Web Forms :: Assigning Confirmation Dialog Frm Server Side?

Jan 7, 2010

is it possible to assign the YES/NO or YES/CANCEL dialog frm server side & how to code for it.

View 12 Replies


Similar Messages:

How To Get Return Value Of JQuery Confirmation Dialog From Server Side Code

Nov 15, 2015

I have JQuery confirmation dialog function that called by server side code (C#)how to get its return value of that function? in this case the return value would be either Yes or No.I called it in button clicked event as below:

Code:
protected void btn1_Click(object sender, EventArgs e)
{
string message = "Message from server side, please select yes or no";
ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowConfirmation('" + message + "');", true);
}

my question is how to get JQuery return value, in this case the return value would be Yes or No?

Code:
=== JQuery Confirmation Dialog ==
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css"

[code]....

View 1 Replies

Web Forms :: Add Client - Side Javascript Confirmation Dialog To Form With .net Validation Controls?

Dec 9, 2010

Is there any way to add a confirmation dialog to a submit button when the form already has other validation controls and a summary control using "showmessagebox=true"? I tried adding

OnClientClick="return confirm('Are you sure?');" to the submit button, but that seems to block all of the other validation?

View 3 Replies

Web Forms :: Display Confirmation Message From Server Side

Mar 11, 2010

On a check box check changed I want to test some conditions and based on that I want to display a confirmation message. Based on the user action, OK or Cancel I want to proceed or stop the process. How can I do that. I tried this,

[Code]....

Even I click Cancel the rest of the code also executed. How can I handle this?

View 3 Replies

Web Forms :: Server Side Yes No Confirmation On Page Load

Jan 24, 2016

The article described fine work on Button Click But I want to use On page Load [URL] ....

View 1 Replies

Web Forms :: Display Server Side Yes No Confirmation Box On DropDownList Change

Apr 16, 2013

I was wondering if there is a way to capture the yes/no values on the server side once the y/n buttons are clicked on a javascript pop up?

I am displaying the y/n pop up while using a dropdown menu but pretty much all the solutions i have seen so far use button's onClick event.

By reading article: [URL]

I am able to see the pop up box with the yes/no options but after i click a 'yes' or 'no', i don't see  'You clicked Yes' or 'You clicked No'.

This is the code i have so far which has been taken from Muddassar's article that uses a button, not a drop down.

I can see for button the "Confirm()" is being called by OnClientClick event, but i haven't been able to make it to work in a dropdown.

On the aspx page:

<asp:DropDownList ID="ddlWorkBucket" runat="server" AutoPostBack="true" DataSourceID="SqlDataSource8" DataTextField="workBucketName" DataValueField="workBucketID" Width="120px" onChange="Confirm()" OnSelectedIndexChanged="OnConfirm"></asp:DropDownList>

Also on the same aspx page is this javascript function:

 <script language ="javascript" type="text/javascript"> 
function Confirm() {    var confirm_value = document.createElement("INPUT");   
confirm_value.type = "hidden";    confirm_value.name = "confirm_value";   

[CODE].....

View 1 Replies

Web Forms :: Display Server Side Yes No Confirmation Box On DropDownList SelectedIndex Changed

Apr 29, 2014

 I am trying to use Yes No Confirmation Message Box but the code below here which i found here uses a button to raise the confirmation message box but what i would like to use is a DropDown.  How can i modify the code and i use drop-down box instead of using a button? here is the javascript code: 

<script type = "text/javascript">
function Confirm() {
var confirm_value = document.createElement("INPUT");
confirm_value.type = "hidden";
confirm_value.name = "confirm_value";

[code]....

but here is what i would like to use is drop-down instead of the button:

<div>
<asp:DropDownList ID="ddl" Width="300px" runat="server" AppendDataBoundItems="true" OnSelectedIndexChanged="ddl_SelectedIndexChanged">
<asp:ListItem Text="test1" Value="test1"></asp:ListItem>
<asp:ListItem Text="test2" Value="test2"></asp:ListItem>
<asp:ListItem Text="test3" Value="test3"></asp:ListItem>
</asp:DropDownList>

</div>

View 1 Replies

Alert - Confirmation Box From Server Side?

Feb 25, 2011

I want to show the confirmation box in asp.net from server side:I want to call it from server side because I have to take the customer message from server side. I am using the below code

string str = "Are you sure, you want to Approve this Record?";
ClientScript.RegisterStartupScript(typeof(Page), "Popup", "return confirm('" + str + "');",true);
// More code ....

Now it is showing the popup and irrespective of what I click, whether "ok" or "Cancel", my code is executing. let me know how can I restrict code to be executed when user select "cancel" in the confirmation box.

View 2 Replies

AJAX :: Server Side Confirmation - Not Control Initiated

Sep 25, 2013

URL...In the above page, the button fires the javascript first, then the code-behind sub runs.  The problem I have is I am in the middle of a code-behind sub routine that checks if a user is logged on the a PC.  If there is a users logged on, I want the confirm popup to ask whether to reboot anyway or cancel.  The code needs to dictate whether to call the javascript, not some direct button click.  Then I need the remainder of the code-behind sub to execute based on the users choice. 

I can call the client script in the code-behind sub using 'RegisterStartupScript...'; then I can get the page's form value.  The problem is that the sub runs to completion without waiting for the javascript code to run.  This causes code-behind variable to get checked before it's set by the client and it nevers works.

View 1 Replies

Web Forms :: Show Save As Dialog On Server Side Directory

Jan 7, 2010

is there an equivalent code to show the save as dialog on server side rather on client side (Response.AddHeader)?

I need to provide the same functionality as Response.AddHeader to show the save as dialog but instead of browsing the client, I need to browse the server side directory.

View 7 Replies

AJAX :: Show Server Side Yes No Confirmation Box Using Script Manager

Feb 5, 2014

I am throwing a alert box using scriptmanager like this based on some condition.

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Would you like to be put on the wait list?')", true);

But it has only "ok" button. Is there a way to display a message box which has yes/no buttons so that I want to check some more conditions in the code behind.

something like this.

DialogResult result = MessageBox.Show("Do you wanna do something?", "Warning",
MessageBoxButtons.YesNoCancel, MessageBoxIcon.Warning);
if(result == DialogResult.Yes) {
//code for Yes
} else if(result == DialogResult.No) {
//code for No
} else if (result == DialogResult.Cancel) {
//code for Cancel
}

View 1 Replies

Web Forms :: Open JQuery Dialog ModalPopup From Server Side Code

Sep 12, 2012

how to open and close jquery ui dialog from  server side in asp.net.

View 1 Replies

Web Forms :: Yes No Confirmation Dialog Using Modal Popup

May 17, 2013

1-I want to "when I was click the Show button show Datetime.now in label but but popup will not close" ;

2-When popup open all textboxt empty

3-when popup close ;closeButton will run like Response.Redirect("abc.aspx")

This is my code;

<style type="text/css">#overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: #000;filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity: 0.7;opacity: 0.7;z-index: 100;display: none;}.content a{text-decoration: none;}.popup{width: 100%;margin: 0 auto;display: none;position: fixed;z-index: 101;}.content{min-width: 600px;width: 600px;min-height: 150px;margin: 100px auto;background: #f3f3f3;position: relative;

[Code] ....

View 1 Replies

Web Forms :: Confirmation Dialog Box Before Deleting A Record

Jun 4, 2012

I want to confirm from the user before deleting a record. I want to show a message box to confirm operation... How I do that.. I used query to delete a record on button's click event..

View 1 Replies

Forms Data Controls :: How To Add Delete Confirmation Dialog

Dec 7, 2010

I am wishing to add Delete confirmation dialog in my following coding, how I add for this situation.

[Code]....

View 2 Replies

Using Server Side Validators With Modal Dialog (jquery)?

Dec 2, 2010

Is there a straightforward way to use server-side validation with ASP.NET's validation controls in a form that's displayed in a modal dialog? I am using jQuery and SimpleModal (in C#, VS2010, .NET 4.0)I've got a modal form which works fine. I need to use a server-side validation because the logic depends on data specific to the record being accessedMy solution for the project I'm working on now is to use a jQuery ajax call to pass all the form data to the server and get back the validation results before allowing the post to proceed. But this is relatively time consuming to implement, and in some situations I'm dealing with now all the validation code exists already.

The first challenge is that of course the modal dialog will close on a full postback. So you could put an UpdatePanel inside the dialog... without even thinking about this too much, though, I assumed that it wouldn't work out that well. It doesn't. And the form which opens the modal dialog to begin with is already in an UpdatePanel, which further confuses matters.Anyway, I tried putting the contents of the modal form in an UpdatePanel for the heck of it. It does actually do a partial postback, the dialog remains open, but the contents of the dialog do not get updated with anything I change server side. If I close and re-open the dialog on the same page after testing the validation code, though, its contents are in fact updated to reflect these changes. Obviously the way the dialog is rendered is confusing ASP.NET. Or vice-versa. But this just seems sketchy from the get-go.

Rather than trying to hack my way through this problem I was hoping that others had some suggestions about a better way to approach this. Or just tell me I'm trying to hard too mix apples and oranges and I should keep it all client side (or client side + jQuery ajax) if that is the only sensible thing to do.

View 1 Replies

Open Jquery Dialog Server Side From Behind Code?

Oct 23, 2010

Is it available to open jquery Dialog Server Side From Behind Code in asp.net?Please give me an example or a link for more information.

View 1 Replies

Preventing AutoPostBack According To Confirmation Dialog

Aug 5, 2010

I want to show a confirmation dialog when a specific value is selected in an asp:DropDownList. If the confirmation dialog returns false (cancel) then I want to prevent the AutoPostBack.

<asp:DropDownList id="theDropDownID" onchange="foo()"></asp:DropDownList>

However, it ignores the returned value from foo() and actually does the postback. The generated code of the onchange event is:

foo();
setTimeout("__doPostBack('theDropDownID','')", 0);

so basically controlling the setTimeout that the .net adds, will do the job.

View 2 Replies

VS 2012 - Confirmation Dialog In UpdatePanel

Aug 20, 2014

A user inserts ad details and on button click saves them to database. If the save is successful, a DIV element slides down (becomes visible) allowing the users to add pictures for that ad.

As the users adds the pictures, they are being shown in a Repeater control. When you hover over a picture, a Delete button is displayed and when you click it, a confirmation message pops out asking the users if they really want to delete the picture.

Now this is where the problems begins. The code behind the button click doesn't wait for the user to click YES or NO. It just executes leaving the message displayed.

So to summarize:

- The entire "bottomDIV" element is wrapped inside an UpdatePanel with update mode set to "Conditional".
- Since the Button is inside the Repeater control, I cannot access its Click event. I use Repeaters ItemCommand to check for the correct Command Name.
- The Repeater Control is inside the same UpdatePanel
- The Update Panel has AsyncPostBackTrigger set to Repeater Control.

The HTML:

HTML Code:
<asp:UpdatePanel ID ="bottomUpdate" runat ="server" UpdateMode="Conditional" >
                         <ContentTemplate>
                        <div id ="bottomWraper">
                        <div id ="savePictureWraper" runat ="server" style="float:left; padding-top:3px;" >
                         <asp:TextBox ID ="pictureName" runat ="server" placeholder ="Naziv slike" style="width:181px;">
[Code] ....

The Script (using alertify.js to display the confirmation dialog):

HTML Code:
<script>           
        $("[id*=btnDeletePicture]").on("click", function () {
                alertify.confirm("Confirm?", function (e) {
                    if (e) {
                        alertify.alert("Successful AJAX after OK");
             
[Code] ....

The code behind is simple and all it does it executes the delete statement and then calls the displayPictures sub again. So, why the code behind doesn't wait for the user to select an option in confirmation dialog....

View 1 Replies

Forms Data Controls :: How To Display An User Confirmation Dialog In Mid Of Gridview Button Click Operation

Dec 30, 2010

I am having a gridview with some button column. I have written some functionality in code behind for the button click. How can i display a confirm dialog in mid of the button click functionality and based on users response(Yes or No from dialog) i need to continue the remaining funtionality in the button click event.

View 4 Replies

Jquery Dialog Calls A Server Side Method With Button Parameters?

May 27, 2010

I have a gridview control with delete asp:ImageButton for each row of the grid. What I would like is for a jquery dialog to pop up when a user clicks the delete button to ask if they are sure they want to delete it.
So far I have the dialog coming up just fine, Ive got buttons on that dialog and I can make the buttons call server side methods but its getting the dialog to know the ID of the row that the user has selected and then passing that to the server side code. The button in the page row is currently just an 'a' tag with the id 'dialog_link'. The jquery on the page looks like this:

$("button").button();
$("#DeleteButton").click(function () {
$.ajax({

[code]...

The dialog itself is just a set of 'div' tags. Ive thought of lots of different ways of doing this (parameter passing, session variable etc...) but cant figure out how to get any of them working.Any ideas are most welcome

View 1 Replies

C# - Add Textbox To Telerik Radgrid Confirmation Dialog?

Dec 3, 2010

I need to collect additional information from the user when they initiate a delete on a radgrid. Right now I am presenting the user with a confirmation dialog box that lets them click "OK" to continue but I need to add an additional textbox to collect a reason.

View 1 Replies

Web Forms :: Reopening Registration Form Modal Dialog On Failed Registration From Server Side

May 5, 2013

I have following Modal Dialog (popup) using only CSS3 in my asp page for user registration:

HTML :
 
<%-- Modal PopUp starts here--%>
<div id="openModal" class="modalDialog">
<div><a href="#close" title="Close" class="close" onclick="DisableAllPopUpTxt()">X</a>

[Code].....

<a href="#openModal" id="DialogLink" style="color: #FFFFFF; font-weight: bold">Register</a>

Now the problem is:

As this is registration form, I want server side validation of existing email id .If user entered email id already exist in DB I want to reopen the above modal dialog (automatically) with an error massage Email ID already exist.

I m not able to reopen that dialog box.

View 1 Replies

Javascript - Trying To Use The Jquery UI Dialog Confirmation On Delete Button

Jan 29, 2011

I'm loading a jqGrid on my page. The grid has a Delete button for each row. I'm trying to use the jquery UI dialog confirmation on my Delete button.

Here's my javascript code:

<script type="text/javascript">
$(document).ready(function () {
$("#list").jqGrid({
url: '/MyController/MyFunction/',
datatype: 'json',
mtype: 'POST',

[Code]....

View 1 Replies

JQuery UI Modal Confirmation Dialog At C# / How To Prevent Trigger OnClick Event

Jan 20, 2010

I am trying to use confirmation dialog from jQuery UI.

I ran into this problem: how to trigger correctly the dialog and at the same time prevent trigger OnClick event specified at button until user click on Yes or No buttons at dialog?

In the example below are two ways how to popup confirmation. Lower one works well. It's a classic JavaScript confirm dialog. When I try to use the jQuery UI dialog, it displays a dialog but allows it to run the event assigned at OnClick (here by using Command, but I suppose there is no difference. Hope I am not wrong.). The piece is taken from the ASP.NET Repeater control btw.

[code].....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved