I'm not able to understand what is the use of it.RegisterClientScriptBlock/RegisterStartupScript.
When we can directly write the JavaScript code in.js file then call it on the button
ex: 2
<script>
function ReqField1Validator() {
if (document.forms[0].txtField1.value == '') {
alert('TextBox cannot be empty')
return false
}
return true
}
</script>
btnPostback.Attributes.Add("onclick","return ReqField1Validator()");
What will be the use of RegisterClientScriptBlock/RegisterStartupScript?
protected void btnPostback_Click(object sender, EventArgs e) {
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append(@"<script language='javascript'>");
sb.Append(@"var lbl = document.getElementById('lblDisplayDate');");
sb.Append(@"lbl.style.color='red';");
sb.Append(@"</script>");
if (!ClientScript.IsStartupScriptRegistered("JSScript")){
ClientScript.RegisterStartupScript(this.GetType(), "JSScript", sb.ToString());
}
}
Read few articles but they were not clear.
Any thoughts on this would be great.