Is there a way to insert the value of a property in the NavigateURL property of a HyperLink control?
For now, I've put a button on the form and when a user clicks it, the following code executes:
Server.Transfer("request_history.aspx?RID=" + htxtRequestID.Text);
Is there a way to get the value of htxtRequestID.Text for the Hyperlink control so I can use a hyperlink instead of the ugly button control?
thanks!
For now, I've put a button on the form and when a user clicks it, the following code executes:
Server.Transfer("request_history.aspx?RID=" + htxtRequestID.Text);
Is there a way to get the value of htxtRequestID.Text for the Hyperlink control so I can use a hyperlink instead of the ugly button control?
thanks!