Jump to content

BluEnt

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by BluEnt

  1. Hi TheodoreThanks for your suggestion and coading.Ya some typing mistake was there but now its working.
  2. Hi AllI am just new in ASP. Actually i want create one asp form and wants to display form result in same page not the results are retrieves from the database. I just want to display result in top of the form. Like as any Blog site is doing.For that i am using this code but its not working.<body><%Your Name = Request.Form("name")Your Email = Request.Form("email")Your Url = Request.Form("url")Your Comments = Request.Form("commnets")%>Your Name : <%=name%><br />Your Email : <%=email%><br />Your Url : <%=url%><br />Your Comments : <%=commnet%><br /><form action="#" method="get"> <p> <input type="text" name="name" value="" size="30" tabindex="1" /> <label for="author">Name (required)</label> </p> <p> <input type="text" name="email" value="" size="30" tabindex="2" /> <label for="email">E-mail (required, never displayed)</label> </p> <p> <input type="text" name="url" value="" size="30" tabindex="3" /> <label for="url"><abbr title="Uniform Resource Identifier">URL</abbr></label> </p> <p> <textarea name="comment" cols="30" rows="10" tabindex="4"></textarea> <label for="url"><abbr title="Uniform Resource Identifier">Comments</abbr></label> </p> <p> <input name="submit" type="submit" tabindex="5" value="Submit Comment" /> </p> </form> </body>So anyone suggest me what code i have to use in it ?Thanks in advance
×
×
  • Create New...