I have a HTML navigation page that opens my aspx pages. Can someone tell me how i can send a var with a link in HTML? SOmething like:
<a href="Werkgever/frmWerkgeverNieuw.aspx?ARGUMENT" but then in HTML?
Thank U!
Printable View
I have a HTML navigation page that opens my aspx pages. Can someone tell me how i can send a var with a link in HTML? SOmething like:
<a href="Werkgever/frmWerkgeverNieuw.aspx?ARGUMENT" but then in HTML?
Thank U!
If that's not it, can you elaborate upon your question...Code:<a href="pagename.aspx?varname=value">click me</a>
Yes i knew it was something like that. But can anyone just give me an example how u put that code in HTML?
That is HTML.
You were right! I've already solved the problem. Thnx 4 the reaction!:D
Using the following example:
Then the code in the pagename.aspx file would be:Code:<a href="ShowThread.aspx?ID=4">click me</a>
WokaVB Code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim lngID As Long lngID = Request.QueryString("ID") 'may need typecast here End Sub