Asp. Net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sakhan
    New Member
    • Sep 2006
    • 10

    Asp. Net

    Hello all,

    Could some body point out the error.

    I am trying to add a few values into the Ms Access Database with ASP.NET

    It Gives me an error at the place of ExecuteNonQuery ()

    I just want to know how would a create a simple interface like

    Enter Name ------ Textbox
    Enter Contact------Textbox

    And then Add that Information what the user enters into the access database.

    I would appreciate Immediate help
  • bolinc
    New Member
    • Oct 2006
    • 3

    #2
    Originally posted by sakhan
    Hello all,

    Could some body point out the error.

    I am trying to add a few values into the Ms Access Database with ASP.NET

    It Gives me an error at the place of ExecuteNonQuery ()

    I just want to know how would a create a simple interface like

    Enter Name ------ Textbox
    Enter Contact------Textbox

    And then Add that Information what the user enters into the access database.

    I would appreciate Immediate help
    Response.Write( "Enter Name: " '<INPUT TYPE= "Text" NAME="NameText" >');
    Response.Write( '&nbsp;');
    Response.Write( "Enter Contact: " <INPUT TYPE= "Text" NAME="ContactTe xt">');
    Then you can use
    sName = String(Request. Querystring('Na meText'));
    sContact = String(Request. Querystring('Co ntactText'));
    Something like that should work.

    Comment

    Working...