Good morning,
I need a way to set to variables in the querystring.
Here is what I have.
id2 will show up in the url but id3 will not. I know it has something to do with DataNavigateUrlField. But I am not sure what to do about it. Any thoughts?
I need a way to set to variables in the querystring.
Code:
[URL unfurl="true"]http://www.server.com?id=something&id2=something[/URL] completely different
Code:
<asp:HyperLinkColumn HeaderText="MID"
DataTextField="MID"
DataNavigateUrlField="MID"
DataNavigateUrlFormatString="Residualstatement.aspx?id2={0:MID&'id3'=request.querystring(ID)}"
/>
id2 will show up in the url but id3 will not. I know it has something to do with DataNavigateUrlField. But I am not sure what to do about it. Any thoughts?