Click here to Skip to main content
15,900,818 members

Comments by jacobjohn196 (Top 35 by date)

jacobjohn196 4-Sep-14 8:44am View    
Post your FillBMSGrid(); and FillTreasuryGrid(); code here. Use "improve question" link.
jacobjohn196 18-Jul-14 8:31am View    
var text=document.getElementById("txt").value;
if(text.ToString().trim()=="")
{
alert("Please enter Serial Number");
document.getElementById("txt").focus();
return false;
}
jacobjohn196 14-May-14 7:51am View    
Create whatever tabs you want in your aspx page and make the style="display:none". When you click on the add button, make the display:block/inline using javascript and "display:none" for delete. <br>
"Open"->show<br>
"Delete"->hide<br>
;)
jacobjohn196 17-Apr-14 8:33am View    
Are you calling Respone.Redirect("") after alert code?
jacobjohn196 17-Apr-14 8:30am View    
protected void btnAlert_Click(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(this, GetType(), "showalert", "alert('This is an alert');", true);
}
This should work.

If this is not working, Check your browser setting.