Hi Experts..
I want to get Javascript Confirm popup with Yes, No button instead of OK and Cancel and if Yes is pressed then I want to assign some value to it...please help me out..
Thanks in Advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shivaraj PoojaryPosted Feb 10, 2012, 3:12 AM
Satyapriya NayakPosted Feb 10, 2012, 3:01 AM
Try this...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Save_multiple_select_item_dropdown.WebForm1" %>
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace Save_multiple_select_item_dropdown
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void btnOk_Click(object sender, EventArgs e)
{
}
}
}
Thanks