Hi, I jaust want to convert the example in the link below, for filtering and paging with gridview, in order to use in my page.
The example uses SQL with noorthwind database.
I think Visual Studio does not suppport mySql fuly,
I already download MYSQL driver do I also need MySQl data prvoider ?
(actulay I can get wotk MySQL with ASP NET but te problem with these controllers)
asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
And the code as I changed
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=classicmodels;USER=root;PASSWORD=123456;OPTION=3;"
And the error I get;
Keyword not supported: 'driver'.
How can I use mysql inside <asp:SqlDataSource
I searched for <asp:MySqlDataSource
sth but could not find a solution,
How can I overcome this problem ? Any idea ?