Friends
I am working for my project in VIsual Studio Ultimate 2010 with SQL Server 2008. My project is about asp.net using C# for connectivity
For me COnnectivity works in the morning and i updated my tables using my code. But after restarting my OS in VMWare its not working even i cant trigger any button in that asp page.
My Coding for Connectivity is
SqlConnection con = new SqlConnection(@"Data Source=WINDOWS32BIT-PC\SQLEXPRESS;Initial Catalog=Userdetails;Integrated Security=True");
SqlCommand cmd;
con.Open();
cmd = new SqlCommand("insert into NewEntryTable values('" + tbname.Text + "','" + tbregisteremailID.Text + "','" + rbgender.SelectedItem.Text + "','" + tbcontactnumber.Text + "' ,'" + tbDOB.Text + "','" + tbnewno.Text + "','" + tboldno.Text + "','" + tbstreet.Text + "','" + tbarea.Text + "','" + tbdistrict.Text + "','" + tbpincode.Text + "','" + tbregisterpassword.Text + "')", con);
cmd.ExecuteNonQuery();
con.Close();
i tried Rebuilding PRoject and Rebuilding that page. Nothing Works. Please Help me
I am in hurry.. Thanks in Advance..