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
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:
- How can I allow user to create posts in website using ASP.NET?Best solution by Programmers
- How to Undo previous action in asp.net?Best solution by forums.asp.net
- How to Search using jQuery ASP.Net?Best solution by Stack Overflow
- How to Play Audio files in ASP.NET?Best solution by Stack Overflow
- How can I fix parser Error in ASP.NET?Best solution by parse.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.