|
|
ASP QueryString Variables - ASP
|
Views : 253
|
|
Tagged in : ASP
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
ASP QueryString Variables:
Form get method - Sends the form data as part of the URL (e.g. "test.asp?site=asp.hscripts.com").It's useful and efficient for small amounts of data. However it cannot be used for large amounts of data.
form get method asp:
<form method="GET" action="somepage.asp">
Name <input type="text" name="Name">
<input type="submit">
</form>
ASP QueryString:
<%
Dim name
name = Request.QueryString("Name")
Response.Write("Name: " & name)
%>
|
|
By Ramya, On - 2010-01-29 |
|
|
|