itz olredy included
shubham salwan
Posts
-
how to save data -
cpp code convert to visual basic 6 -
data connectivityi had created a connection to the SQL Express database but not able to create data-bound controls on the form
-
connectivity with databaseprivate void button1_Click(object sender, EventArgs e)
{
string connString = "Data Source=shubhi-PC;Initial Catalog=employee;uid=sa;pass=abc;Integrated Security=True"; SqlConnection conn = new SqlConnection(connString);
conn.Open();
String sql = "INSERT INTO emp_detail(empid,empname,empadd,empsal) values ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "')";cmd.ExecuteNonQuery(); conn.Close(); textBox1.Text="";
i want to save data to sqlserver2005 ... bt itz not working
-
Convert Asp.net web application App_Code folder to DLLyes you can make DLL file of all the classes. this will help you to protect your code from others hope dis link will help you http://www.c-sharpcorner.com/uploadfile/mahesh/dll12222005064058am/dll.aspx
-
how to save datathe thing is that i use to make web sites in visual studio.. i m trying window application form.. thatz y facing problem
-
how to save dataerror occured that the type or namespace name sqlcommand could not be found
-
connectivity with databasei am not able o make connection con
-
how to save datahi can anybody tell me how to save data to database using visual studio 2008(c#). in sqlserver2005. i had created the design in web application form. please send me the code of save button.(c#)
-
connectivity with databasehi, i am using visual studio 2008 and making project in c#. i had created web application form but i am not able to connect it with database. em using sqlserver2005 as database
shubhi