How to insert data in db using jsp?

ASP.net webmatrix Database commpilation error?

  • I have connected to a back end database, i have created a datagrid and changed the id to 'mydatagrid' but when i try to display it on a page called 'test.aspx' using the datagrid i get this error: 'mydatagrid_SelectedIndexChanged' is not a member of 'ASP.test_aspx'. AND HERE IS THE CODE! WHERE DO I CHANGE IT TO MAKE IT WORK?? <%@ Page Language="VB" %> <script runat="server"> Function ExecuteQuery() As System.Data.IDataReader Dim connectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data Source=E:\DVD website\"& _ "aspx\shopping.mdb" Dim dbConnection As System.Data.IDbConnection = New System.Data.OleDb.OleDbConnection(connec... Dim queryString As String = "SELECT [Customer].* FROM [Customer]" Dim dbCommand As System.Data.IDbCommand = New System.Data.OleDb.OleDbCommand dbCommand.CommandText = queryString dbCommand.Connection = dbConnection dbConnection.Open Dim dataReader As System.Data.IDataReader = dbCommand.ExecuteReader(System.Data.Comm... Return dataReader End Function Sub Page_Load(sender as object, e as EventArgs) MyDataGrid.DataSource()=ExecuteQuery() MyDataGrid.DataBind() End Sub </script> <html> <head> </head> <body> <form runat="server"> <asp:DataGrid id="mydatagrid" runat="server" OnSelectedIndexChanged="mydatagrid_Selec... <!-- Insert content here --> </form> </body> </html>

  • Answer:

    WebMatrix, System.Web.Helpers will no longer exist. I actually call the method as WebMatrix.Data.Database directly, so, the #using is not really needed as well. The main problem I have is, my Node.cshtml is no longer a class. Because the class is missing, now, I am getting other side errors as the result. But, the main error is my Node.cshtml is un-class by VS:Web. If I edit everything in WebMatrix, this error won't happen.

J at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

WebMatrix, System.Web.Helpers will no longer exist. I actually call the method as WebMatrix.Data.Database directly, so, the #using is not really needed as well. The main problem I have is, my Node.cshtml is no longer a class. Because the class is missing, now, I am getting other side errors as the result. But, the main error is my Node.cshtml is un-class by VS:Web. If I edit everything in WebMatrix, this error won't happen.

Russell

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.