Tuesday, April 19, 2011

Java Script In .cs file

protected void linkbtnTerms_Click(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Confirm", "Termspopup();", true);
}

No comments:

SQL Optimization

  SQL Optimization  1. Add where on your query  2. If you remove some data after the data return then remove the remove condition in the sel...