hi...
I have added code below and the problem is
My database insertion is working good with normal asp.net page but
when it is a content page of master page, stucking me to insert data in
database.
One of the expert is suggesting me to take the advantage of SQL Server Profiler to accomplish it, but I don't know anything about sql profiler. I only know about stored procedures but don't know what is sql server profiler?
*************************************
My Code Behind
*************************************
public string GetConnectionString()
{
return System.Configuration.ConfigurationManager.ConnectionStrings["myDbConnectionString1"].ConnectionString;
}
private void execution(string name, string username, string password, string emailid)
{
SqlConnection conn = new SqlConnection(GetConnectionString());
string sql = "INSERT INTO myT ...
Go to the complete details ...