|
|
Get the form field values using request object - ASP
|
Views : 840
|
|
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.
|
Hi..
Get the posted form field values using request object method in ASP.
<form action="" method="post">
<input type="text" name="txt">
<input type="submit" value="submit">
</form>
Get the text box value using request object method.
<%
Dim pp
pp=Request.Form("txt") //Dont use single quote
Response.Write(pp)
%>
or
<%
Dim pp
pp=Request("txt") //txt is the textbox name
Response.Write(pp)
%>
|
|
By - Nirmala, On - 2009-08-31 |
|
|
|