B
Baris Seker
Hi all,
What I'm trying to do feels like very simple but I can't seem to do it. I
have a datagrid control and the first column is a HyperLink column; a link
to another page that includes variable that retrieved from the db. The html
view of this is below:
<asp:HyperLinkColumn DataNavigateUrlField="message_id"
DataNavigateUrlFormatString="editmessages.aspx?message_id={0}"
DataTextField="message_id" HeaderText="Message Id"
NavigateUrl="editmessages.aspx"></asp:HyperLinkColumn>
It's working as it is, passing the message_id to the other page. What I want
to do is to include another variable in there, which is the value of a text
box on the first page. So the URL to open should be like
.../editmessages.aspx?message_id=1&message_from=blah. How can I do this? How
can I insert the textbox1.text value in the hyperlinkcolumn field?
Thanks in advance!
Baris
What I'm trying to do feels like very simple but I can't seem to do it. I
have a datagrid control and the first column is a HyperLink column; a link
to another page that includes variable that retrieved from the db. The html
view of this is below:
<asp:HyperLinkColumn DataNavigateUrlField="message_id"
DataNavigateUrlFormatString="editmessages.aspx?message_id={0}"
DataTextField="message_id" HeaderText="Message Id"
NavigateUrl="editmessages.aspx"></asp:HyperLinkColumn>
It's working as it is, passing the message_id to the other page. What I want
to do is to include another variable in there, which is the value of a text
box on the first page. So the URL to open should be like
.../editmessages.aspx?message_id=1&message_from=blah. How can I do this? How
can I insert the textbox1.text value in the hyperlinkcolumn field?
Thanks in advance!
Baris