I have come across the script in ASP.net With Vb.net for undating, inserting and deleting data in an application.But then when I run it in my PC it could not cater the application to run as normal.What I feel hear is, do we need some intermediate platform to connect both this application and database so that the editing process flows correctly.<br>Please give me ideas to overcome this problems. <br><br>Thank You Very Much
Can you post the script (if it's not too long) or give us a link to where you found it so we can get a better idea of what you are looking for?<p> </p><p><hr size="1" width="50%" align="left" />dotNetBB Forum Developer<br><br><a href="http://www.dotnetbb.com" target="_blank"><img src="http://www.dotnetbb.com/sigs/dnb_468_static.gif" border="0"></a></p>
Was this answer helpful ?
Yes No
Firstly Thank You Very Much For Replying.<br><br>What I mean over here is......I have come across the ASP.net script such as,<br>objTable = objDataSet.Tables("Employeees")<br>objNewRow = objTable.NewRow()<br>objNewRow("FirstName") = "Norman"<br>objNewRow("LastName") = "Blake"<br>objTable.Rows.Add(objNewRow)<br><br>By this way what I understand is, we need to insert delete and update data by putting<br>the data inside the script.<br>What I need to know now is, how to insert, update, delete data from an application directly (online)<br>Example...I'm using textbox to insert data.So when in click the insert button, it will automatically insert the data into my database.<br>So do I need to use the Web.config file.<br><br>Thank You Very Much.
Was this answer helpful ?
Yes No
Firstly Thank You Very Much For Replying.<br><br>What I mean over here is......I have come across the ASP.net script such as,<br>objTable = objDataSet.Tables("Employeees")<br>objNewRow = objTable.NewRow()<br>objNewRow("FirstName") = "Norman"<br>objNewRow("LastName") = "Blake"<br>objTable.Rows.Add(objNewRow)<br><br>By this way what I understand is, we need to insert delete and update data by putting<br>the data inside the script.<br>What I need to know now is, how to insert, update, delete data from an application directly (online)<br>Example...I'm using textbox to insert data.So when in click the insert button, it will automatically insert the data into my database.<br>So do I need to use the Web.config file.<br><br>Thank You Very Much.
Was this answer helpful ?
Yes No