Click here to Skip to main content
15,899,124 members

Comments by valerian.precop (Top 5 by date)

valerian.precop 6-Dec-11 7:47am View    
If you do not get any errors that means you do not have the s_id you provided in your table.
What is the value for gv1.Rows[e.RowIndex].Cells[4].Text when you update?
valerian.precop 6-Dec-11 6:46am View    
What is the text inside gv1.Rows[e.RowIndex].Cells[2].Text?
What do you have there if you do a debug?
valerian.precop 5-Dec-11 12:19pm View    
Learn basic ASP.NET and it will come to you... or hire a webdeveloper in ASP.NET
valerian.precop 1-Dec-11 12:22pm View    
You will need some good javascript and/or jQuery coding.
Either create your own popup layout (HTML and javascript to manipulate it) or use an existing model of popup like "jquery.simplemodal-1.3.4.js" (I don't know if this is the last version).
Either way you will need some pretty major client side coding.
valerian.precop 1-Dec-11 12:14pm View    
I am not sure what do you mean, but you can always use "Page.ClientScript" to register javascript code.
e.g. (I used this code in Page_Load method of the MasterPage) :
this.Page.ClientScript.RegisterStartupScript(this.Page.GetType(), "test", "alert('testing');", true);