↧
How to use DataGrid in C# .Net?
First place the DataGridView Control in the form.In the coding add the namespasce using System.Data.SqlClient; then initialize SqlConnection to ConnString as public (i.e)next to public Form1( )...
View ArticleHow to execute Stored Procedure in C#
Executing Stored Procedure in C# SQLCommand Command = new SqlCommand(“StoredProcedureName”, Connection); Command.CommandType = CommandType.StoredProcedure; Command.Parameters.Add(new...
View Article