|
-
Dec 8th, 2000, 08:39 PM
#1
Thread Starter
New Member
I am trying to run this code below but i get a runtime error
(ie) Object Expected Error
Can somebody tell me what is the problem in the code
<%@ Language=VBScript %>
<HTML>
<HEAD>
<link rel="home" href=http://www.egain.com>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<form name="userinfo" action="chap3RequestObj.asp" method="post">
<center>
Fill the Form
Name:<input type="text" name="name"> <br>
Email:<input type="text" name="email"> <br>
<input type=reset value=Reset>
<input type=submit value=Submit onclick="too()">
<P> </P>
</form>
<%
sub too()
alert(Request.Form("name"))
end sub
%>
Name:<%=Request.Form("name") %> <br>
EMail:<%=Request.Form("email") %>
</BODY>
</HTML>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|