Jump to content

TechLady

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by TechLady

  1. TechLady

    Tutorial

    Well never mind. I figured it out. But the code works well in the head of the receiving page and the body. Which is best?
  2. TechLady

    Tutorial

    Hello Everyone,I am brand new to asp. I am on the tutorial for asp and I can't get the form to work. When I submit I don't see the informtaion I filled out in the text box. I just get the word "Hello". What am I doing wrong?Here is my code.<%@ Language=VBScript %><html><body><form action="demo_reqquery.asp" method="get" ID="Form1">Your name: <input type="text" name="fname" size="20" ID="Text1"/><input type="submit" value="Submit" ID="Submit1" NAME="Submit1"/></form><%dim fnamefname=Request.QueryString("fname")If fname<>"" Then Response.Write("Hello " & fname & "!<br />") Response.Write("How are you today?")End If%></body></html>
×
×
  • Create New...