Design aspx
-
I want to create a web form by aspx. But I don't know how to access database (SQL Server.).Ex: Creat one page about mark management. I want to insert,update,display them . What is
redirect
in C#? Thanks for help me:confused:songthan1 wrote: I want to create a web form by aspx. But I don't know how to access database (SQL Server.).Ex: Creat one page about mark management. I want to insert,update,display them . What is redirect in C#? Thanks for help me I'm not quite sure what some of your questions are, but your last one is easily found on the MSDN site. Redirect to another web page in C#[^] HTH. Jerry Most people are willing to pay more to be amused than to be educated--Robert C. Savage, Life Lessons Toasty0.com Ladder League (beta)
-
I want to create a web form by aspx. But I don't know how to access database (SQL Server.).Ex: Creat one page about mark management. I want to insert,update,display them . What is
redirect
in C#? Thanks for help me:confused: -
I want to create a web form by aspx. But I don't know how to access database (SQL Server.).Ex: Creat one page about mark management. I want to insert,update,display them . What is
redirect
in C#? Thanks for help me:confused:Hi Dear, If u r designing a three tier application then u need to make two classes for connection as well as for adapter ... for that u need to learn ado.net. Once u learn how to create connection classes u can use the same funda in any programme for the database connection....:)
-
I want to create a web form by aspx. But I don't know how to access database (SQL Server.).Ex: Creat one page about mark management. I want to insert,update,display them . What is
redirect
in C#? Thanks for help me:confused:To answer your question about redirect you can do the following: In code behind: private void Page_Load(object sender, System.EventArgs e) { Response.Redirect("http://whatever"); } Or directly in the aspx file in the same manner using As far as trying to access a database, you will have to be a little more specific as far as what you want to do. Are you moving from ASP to ASP.Net programming? Scott Stocker</x-turndown>