Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~1K People Reached
About Me

soft

Interests
chating
Favorite Tags

4 Posted Topics

Member Avatar for mikkime23

sqlcmd = New SqlCommand("INSERT INTO tablename (field1,field2,field3,..)values('" & textbox1.text & "','" & textbox2.text & "','" & textbox3.text & "',...),con) cmd.ExecuteNonQuery()

Member Avatar for Joeromine
0
172
Member Avatar for Shruthi_R

to change session timeout write this code in your web.config file <sessionState mode="InProc" timeout="60"> or you can also set this in global.asax file as Session.Timeout = 60 ; // in Session.Start() event it will increase your session expire time .

Member Avatar for prashantprof
0
563
Member Avatar for suresh bangaru
Member Avatar for owofeminew
0
120
Member Avatar for George_E

try con.Open() insertcommand = new OleDb.OleDbCommand ("INSERT INTO Reservations (Transaction_Id, Item_Id, User_Id,Current_Date, Reserved_Until, Contact_Name, Contact_Tel)VALUES (trim(txtTransactionId.text), trim(txtItemId.text),trim(userid.text),dtpicker1.value.ToShortDateString, dtpicker2.value.ToShortDateString, trim(txtContactName.text),trim(txtContactTelp.text))",con) cmd.ExecuteNonQuery() msgbox("data Inserted") con.close() Catch ex As Exception MsgBox(ex.Message) End Try

Member Avatar for suresh bangaru
0
531

The End.