Announcement

Collapse
No announcement yet.

ASP VB help needed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    ASP VB help needed

    Thanks for any help here, i seem to be always asking for help these days, all this is, is a demonstration of what we (the school i work for) coulddo with an internal ASP site.

    Anyway, i want an asp form with 3 text boxes that i need to be entered into my SQL Sever database, like a very, very basic guest book.

    here is what i have so far

    <html>
    <body>
    <form action="details.asp" method="get">
    Your name: <input type="text" name="fname" size="20">
    Your age: <input type="text" name="fage" size="20">
    Your comments: <input type="text" name="fcom" size="200">
    <input type="submit" value="Submit">
    </form>

    </body>
    </html>


    I can get the details entered to display on the page details.asp, with a variation of

    <%
    dim fname
    fname=Request.QueryString("fname")
    If fname<>"" Then
    Response.Write("Hello " & fname & "!<br />")
    Response.Write("Thanks for your comments, you ****!")
    End If
    %>


    but how do i get the details entered and stored in SQL Server Personal Edition?


    I am a "virgin" with ASP as you can imagine


    thanks for any help, i really apreciate it
Working...
X