testare
Programmer
- Jan 21, 2005
- 127
If i use this code below, in my browser the address would be like this admin.asp?action=login
I want to clear the the querystring after it has finish the page or something else in the browser address link
I hope you understand what i mean.
I want to clear the the querystring after it has finish the page or something else in the browser address link
Code:
<form action="admin.asp?action=login" method="Post">
<input class="FormPassword" type="password" name="password" value="demo">
<input type="submit" value="Logga in"><br>
</form>
<%
If Request.QueryString("action") = "login" Then
Response.Write("Just testing")
End If
%>
I hope you understand what i mean.