Blog Detail
Just the Code Please : ASP.NET using C#
http://just-the-code.blogspot.com/
An easy access to "just the code" to help Developers with ASP.NET & C# to build dynamic web based Sites & Applications
Recent Posts
Dynamically Popluating a ListBox with SQL Data Adapter
This snippet shows you a simple way to dynamically populate a ListBox. Your SQL Select statement will determine the data that the ListBox's will display as well as its value. //declare two variables - one for the connection string and the o...
Dynamically Popluating a DropDownList with SQL Data Adapter
This snippet shows you a simple way to dynamically populate a DropDownList. Your SQL Select statement will determine the data that the DropDownList's will display as well as its value. //declare two variables - one for the connection string...
Inserting Data into a Database using OleDb
This snippet is shows you a simple way to insert data into a database using OleDb.protected void Button1_Click(object sender, EventArgs e){//Setup Connection stringString cnstr= "Provider=type in OLE DB Provider;server=type in IP address;+ "Uid=type ...
Dynamically Populating a Gridview with a Search Button and aTextbox
This snippet shows you a simple way to dynamically populate a GridView with a search button and a textbox. Your SQL Select statement will determine which columns you want displayed in your GridView. //declare two variables - one for the connection st...
Dynamically Populating a Repeater with SQL Data Adapter
This snippet shows you a simple way to dynamically populate a Repeater. Your SQL Select statement will determine which columns you want displayed in your Repeater. //declare two variables - one for the connection string and the other for the datasetp...
Dynamically Populating a FormView with SQL Data Adapter
This snippet shows you a simple way to dynamically populate a FormView. Your SQL Select statement will determine which columns you want displayed in your FormView. //declare two variables - one for the connection string and the other for the datasetp...

