Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Making server side decision based on client side JavaScript

0.00/5 (No votes)
14 Jan 2014 1  
Many of you might have come across the situation where you need to making server side discussion based on client side JavaScript confirm message

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

Many of you might have come across the situation where you need to making server side discussion based on client side JavaScript confirm message value. Though this may sound very basic feature, surprisingly large developers struggle when implementing this. In this article, I will show you how to.
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="Server">

  <table style="margin-top:100px;">
    <tr style="padding-bottom:10px">
      <td>
        <asp:Label ID="lblitemName" Text="Item Value" runat="server">
        </asp:Label>
      </td>
      <td>
        <asp:TextBox ID="txtitemval" runat="server"> </asp:TextBox>
      </td>
    </tr>
  </table>

  <div style="padding-bottom:10px">
    <asp:Label ID="lblMsg" runat="server"></asp:Label>
  </div>

  <div style=" margin-bottom:100px; margin-left:120px">
    <asp:HiddenField ID="hdnField" runat="server" Value="false" />
    <asp:Button ID="btnSubmit" runat="server" Text="Check Val" OnClick="btnSubmits_Click" />
  </div>

</asp:Content>

And the code behind for this page is like

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

public partial class Test : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void btnSubmits_Click(object sender, EventArgs e)
    {
        string itemValue = Convert.ToString(txtitemval.Text);
        if (hdnField.Value == "false")
        {
            lblMsg.Visible = false;
            AddJavascriptCode(itemValue);
        }
        else if (hdnField.Value == "true")
        {
            lblMsg.Visible = true;
            lblMsg.Text = string.Format("You have entered {0}", itemValue);
            hdnField.Value = "false";
        }
    }

    private void AddJavascriptCode(string itemValue)
    {
        string script = @"< script language=""JavaScript"" type=""text/javascript"">
window.onload=function()
{
var IsConfirm = 1;
objField = document.getElementById('" + hdnField.ClientID + @"');
objSubmit = document.getElementById('" + btnSubmit.ClientID + @"');
IsConfirm = newConfirm('Test','You have entered " + itemValue + @" value. Are you sure you want to go next page?',1,1,0);
if(IsConfirm == true)
{
objField.value = 'true';
objSubmit.click();
}
else
{
objField.value = 'false';
}
}
function newConfirm(title,mess,icon,defbut,mods)
{
if (document.all)
{
retVal = confirm(mess);
retVal = (retVal==1)
}
else
{
retVal = confirm(mess);
}
return retVal;
}
</script>";
        Page.ClientScript.RegisterStartupScript(this.GetType(), "Test", script);
    }
}

See the Result below

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here