function Termspopup()
{
window.open("../Terms.aspx","mywindow", "menubar=0,location=1,status=1,scrollbars=1,resizable=0,width=400,height=500");
}
This is a open code forum with some good code which makes you help to solve your coding problem.
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);
}
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Confirm", "Termspopup();", true);
}
Subscribe to:
Posts (Atom)
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...
-
Kendo UI Uploader : Create a kendo ui uploader control in MVC View @( Html.Kendo().Upload() .Name( "fi...
-
string float_value="234.4567"; //If data come from databse then first convert it into string then this line; float fl=float.pars...
-
We are bind dynamic columns and there values as a rows to Kendo UI grid, To do this we are using a Json file as a data and column list. ...