> Is this the right way to pass values to query string
> <asp:HyperLink ID="HyperLink1" runat="server"
> NavigateUrl="~/Admin.aspx?Token=ABC">Go To Admin
> Page</asp:HyperLink></div>
Yes, assuming there is an opening <div> tag a bit further up...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
There is more than one "right way" to do this kind of thing, but the
technique you've shown is indeed valid.
Here are some other ways to pass data around too:
http://SteveOrr.net/articles/PassData.aspx

Signature
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
> Is this the right way topass values to query string
> <asp:HyperLink ID="HyperLink1" runat="server"
> NavigateUrl="~/Admin.aspx?Token=ABC">Go To Admin
> Page</asp:HyperLink></div>