Hello. I have a GridView control in an ASP.NET app in which one of
the columns is set up as a HyperlinkField, with a navigate URL back to
the same page (with a single parameter, id). Using
request.querystring("id") I'm grabbing the parameter value and
attempting to code to it in the Page_Load event (if
request.querystring("id") = 1 then..). It's not working. I put a
response.write in Page_Load and the parameter is getting retrieved,
but the rest of the logic in the Page_Load event handler doesn't seem
to fire. I confirmed this with a breakpoint (VisualStudio) on the IF
statement.. after clicking one of the hyperlinks the code never gets
to the breakpoint. Can someone help me understand what is happening
(or not happening) in this? Thanks.
Rick