Sure you can use Javascript, By geting the button click event on popup, You can handle that event by passing the values...
DeveloperAtul
Posts
-
client side script for server control -
How to send automatic alerts??Hi, You can schedule triggers on database based on time condition. Or You can execute a function that check the current date value after a specified time period and if old date and new date is not equal then you can execute your code. Regards Atul.
-
Save File Dialog Box in Asp.net....NO This feature is not use in ASP.net If you want to save any file then make a dynamic link. And when clicking on this link it will ask to save file. Regards Atul
-
Why can't I use Session another aspx.cs page??HI, Use type casting to assign value to session variable. Session["ID"]=id; To extract value on another page from session. string ID=Session["ID"].ToString(); Base on DataType And ensure
-
Crystal report?HI Karthik, You can use this code for refrence to display crystal report. sql= ""; DataSet ds = new DataSet(); OleDbDataAdapter AdpNew = new OleDbDataAdapter(sql,Conn); AdpNew.Fill(ds); Rpt ReportObject = new Rpt(); ReportObject.SetDataSource(ObjectName.Tables[0]); ReportViewerName.Height = this.Height; ReportViewerName.Width = this.Width; ReportViewerName.ReportSource = ReportObject;