C# - Bypass ConfirmButtonExtender Depending On Value Of Another Field In Page

Jan 19, 2010

I am trying to bypass the ConfirmButtonExtender depending on the value of another field in the page. Basically, when a user click on my "Cancel" button, I normally display a modalpopup using the confirmbuttonextender and the modalpopupextender to display a dialog box confirming that they wish to cancel any changes they have made and return to the prior screen. If they click Yes, the button's onclick event fires which calls some code in the codebehind and redirects the user to another page. If they click no, it just returns to the same page, with no changes. However, in some situations, I know that my user is unable to perform any edits (they aren't allowed to) and for those users, I don't want to display the "Are you sure you want to leave you will loose any changes" dialog box. I've set a hidden checkbox field named "cbAllowEdit" to indicate whether the user is allowed to edit the fields or not. I was trying to use the technique found at link text to get this working but it just doesn't even seem to be firing the button's onclientclick event at all.

ASPX & Javascript
<asp:CheckBox ID="cbAllowEdit" runat="server" Checked="true" />
<asp:Button ID="btnCancel" runat="server" CausesValidation="false"
OnClick="btnCancel_Click" Text="Cancel" OnClientClick="disableSubmit();return false;" />
<ajaxToolKit:ConfirmButtonExtender ID="ConfirmButtonExtenderbtnCancel"
runat="server" DisplayModalPopupID="ModalPopupExtenderbtnCancel"
TargetControlID="btnCancel" BehaviorID="ConfirmButtonExtenderbtnCancel" />
<ajaxToolKit:ModalPopupExtender ID="ModalPopupExtenderbtnCancel" runat="server"
BackgroundCssClass="modalBackground" CancelControlID="btnCancelCancel"
OkControlID="btnConfirmCancel" PopupControlID="ConfirmCancelPanel"
TargetControlID="btnCancel" />
<asp:Panel ID="ConfirmCancelPanel" runat="server" CssClass="modalWindow"
Height="200" Width="450">
<p class="confirmMessage">
Are you sure you want to navigate away from this record?
</p>
<div align="center">
<p class="feedbackError">If you have made any changes to the record since the last time
you saved, they will be lost.</p>
<asp:Button ID="btnConfirmCancel" runat="server" Text="Yes" Width="75" />
<asp:Button ID="btnCancelCancel" runat="server" Text="No" Width="75" />
</div>
</asp:Panel>
<script type="text/javascript">
function disableSubmit() {
if (document.getElementById('<%= cbAllowEdit.ClientID %>').checked) {
return checkSubmit();
}
else {
return true;
}
}
function checkSubmit() {
var confirmButton = $find('ConfirmButtonExtenderbtnCancel');
confirmButton._displayConfirmDialog();
}
</script>

Code behind:

/// <summary>
/// Runs when the btnCancel button is clicked.
/// </summary>
protected void btnCancel_Click(object sender, EventArgs e)
{
Page.Response.Redirect("~/Searches/LookupCode/Default.aspx");
}

View 2 Replies


Similar Messages:

Web Forms :: How To Display Image Depending Upon Db Field Value

Dec 29, 2010

this is my aspx page code :

<a runat="server" id="hlkmail"><img src="../images/send_mail_icon.jpg" alt="" /></a>
<a runat="server" id="hlkgallery"><img src="../images/galleryl_icon.jpg" alt="" /></a>

this is code behind (aspx.vb) :

hlkmail.HRef = "sndmail.aspx?Clientname=" & clientName
hlkgallery.HRef = "pgallery.aspx?Clientname=" & clientName

above code shows fixed images.

i want to display image dynamiccally depending upon the db value.

i have a stored proc that returns hasmail ='true/false' and hasgallery='true/false' from database.

if true i want to display send_mail_icon.jpg else send_mail_icon_watermark.jpg

and gallery_icon else gallery_icon_watermark.jpg. i want to do this in code behind using if loop.

View 7 Replies

How To Bypass OnSubmit Form Validation In ASPX Page

May 11, 2010

i have a form on a particular ASPX page that has custom js validation. Also on this form is a navigation menu in the header.

The navigation menu items are built programatically and are initiated by __doPostBack calls which obviously submits the form.

The problem i am having is that the form itself has code something like the following

onsubmit='return validateForm()'

and if the form has not been filled out then the form cant submit. This in itself is not a problem unless a user goes to the form but decides to navigate away.

When this happens the validateForm function fails.

Does anyone have a workaround for this issue?

NB: On my nav links i have already set CausesValidation="False"

This is the markup:

<div id="divNavigate" class="absolute_topleft">
<asp:LinkButton ID="linkGoHome" runat="server" OnClick="linkGoHome_Click" CausesValidation="false" CssClass="xxx">text.</asp:LinkButton>
</div>

This is the handler:

protected void linkGoHome_Click(object sender, EventArgs e)
{
Response.Redirect("xxxxx");
}

This is the validation function:

[Code]....

And this is how its called:

<form id="formLogin" runat="server" onsubmit="return validateTextField(field1)">

View 1 Replies

AJAX :: ConfirmButtonExtender And ModalPopupExtender Server Control With Master Page Failed To Find Element

Sep 24, 2010

I am in the process of building a server control that contains a ConfirmButtonExtender. This is my code:

The Master Page:

[code]....

View 2 Replies

Links In Master Page With Tilde URLs Give 404 Depending On The Page?

Nov 22, 2010

Here's an odd one.

I have a master page with links to other pages in the site. Those links use tilde paths (like "~/dir1/page2.aspx"). On most of the pages in the site that use this master page, there is no problem. The problem only seems to be on a few pages that use the master page, the links are VERY wrong, it tries to use the ~ as part of the link (so they are[URL]. It's as if it is treating the tilde as a literal under certain

View 1 Replies

VS 2010 - Change Menu Items On Master Page Depending On Content Page Selection

Feb 15, 2012

I have a master page with an unordered list that contains items like, Home, Messages etc.

Now I am working on an EditProfile.aspx page and I want the menu to change and have items like Basic Information, Profile Picture etc. Sort of like facebook. What is the best way to accomplish this...

View 2 Replies

Redirecting Page Depending On Query String?

Jul 26, 2010

I have page A, B and C. In the page load of C, i have used a query string parameter to display some tables depending on where it came from, either A or B. Page C has Cancel button. When a user clicks Cancel, it has to check where it came from and should redirect to same page, i mean either A or B. I am not at all sure how to use query string for redirecting.

View 2 Replies

Web Forms :: Way To Add Side Bar Menus To Page Depending On Userclass

Jan 17, 2010

I've come to the place where I need to add side bar menus to my page depending on userclass. I've set up the place-holders, but I was wondering what's the better way to add these.

View 3 Replies

Web Forms :: Disable A Page Depending On A User Session?

Jun 30, 2010

I have a page that I need to disable, or re-direct to another page if a different type of user logs in.

The application has this page for one type of user but another type of user is not allowed access it.

How would you do this type of thing?

View 3 Replies

C# - Want To Open Page In Different Modes, Depending On Whether A Querystring Parameter Is Present Or Not?

May 13, 2010

I have a page create-quote.aspx. I want to open this page in different modes, depending on whether a querystring parameter is present or not.My question is at which event should I check, If I have a querystring parameter or not.I think, it should be preinit, what do you say.

View 3 Replies

Changing Page Title Dynamically Depending On A Databinding Result?

Oct 26, 2010

I have a page to show a thread content, it take the ID of the thread from the query string.

depending on the ID, I show the content using the FormView control.

how could I then change the page title depending on the databinding result?

I've figured out that I can do that before the databinding in the Page_Load event, by querying the title of the thread depending on the ID from the QueryString object, but I'm wondering if I can achieve my goal during the databinding!

View 1 Replies

Dynamically Select Master Page Depending On Number Of Parameters?

Oct 31, 2011

Is it possible to select on page load or page pre load a different master page depending on a number of parameters?

A simple example would be if the device is mobile, use master page A, otherwise use master page b.

Can this be done?

View 2 Replies

Crystal Reports :: How To Bypass This

Aug 30, 2010

[IMG]http://i35.tinypic.com/2nv7zbt.jpg[/IMG]my connection is on server which is on remote(on other system)everytime when i try to get the data from the remote server it asks me password is there a way i can stop or by pass it from askiing to me again and againg

View 2 Replies

C# - Bypass Non Serializable Properties When Going About Serialization

Nov 12, 2010

I follow the code snippet to calculate Session size. Profile Memory Usage of Session State ASP.Net My problem is some properties of objects aren't marked as Serializable so I cannot apply the solution. Can I just bypass non-serializable properties?

View 1 Replies

Bypass Data Annotations Validation On MVC 2?

Aug 4, 2010

I would like to know if it's possible to bypass the validation of one property which is using Data Annotations. Since I use the model across multiple pages, there's a check I need in some, but not in others, so I would like it to be ignored.

View 2 Replies

AJAX :: Possible To Have Confirmbuttonextender On A Checkbox

Jul 14, 2010

To be specific, dynamically generated checkboxes. I have a list of checkboxes on the page, defaulted to checked on. When the user removes the checks, I want that checkbox to disappear with AJAX (this I know how to do). However, before that checkbox disappears, I want to display a confirmbuttonextender dialog with OK and Cancel buttons. If this is not possible, how could I do this a different way?

View 4 Replies

AJAX :: ConfirmButtonExtender Example Not Working

Nov 26, 2010

I tried the basic example for adding AJAX extenders, namely opening a web form, adding Script Manager, adding a button, dragging the ConfirmButtonExtender on top of the button, and adding ConfirmText for the question, then hitting Ctl + F5, clicking the button.

View 1 Replies

AJAX :: How To Use ConfirmButtonExtender Conditionally

May 7, 2015

I'm using ConfirmButtonExtender for confirmation. first I want to validate all the required fields then I want to show confirm message to the user. But I can see it every time. I want to use it conditional.

View 1 Replies

Bypass Existing HttpModule For A Http Handler?

Aug 11, 2010

Scenario: I have a bunch of web applications for which I want to add a simple ping functionality via http handler. Example: [URL]

Problem: For some of the applications this approach does not work becasue of custom HttpModule. These modules have some depedency on either authentication or some other processing logic due to which it makes the request invalid.

I am trying to find a solution to get this ping functionality work without making any changes to existing HttpModules.

View 2 Replies

State Management :: Bypass Second Login Module?

May 5, 2010

I am updating a website for a client. I am adding a module to it which uses the same username and password as the main site and has a link on the main admin page. But has a different admin page. I was wondering if I could use a session state variable to let the client automatically login to the module if he is already logged in to the admin page and how would I go about it?Secondly,I have 4 master pages setup. Two for the main website and Two for the module inside the website. Since the module is a separate app. Is there a way I can still nest the master pages to give the module a same look as the website. Other than creatings separate css files and then restarting the whole procedure.I get this error " The virtual path '/Website/MasterPage.master' maps to another application, which is not allowed."

View 1 Replies

Web Forms :: HttpWebRequest Bypass Javascript Redirection?

Feb 20, 2010

I just wonder if there is a way HttpWebRequest can bypass redirection made by javascript?For example, I use HttpWebRequest to hit [URL]

[Code]....

Instead of getting redirected to the page: http://office.microsoft.com/en-us/default.aspx, with http return code of 302 before the redirect.I got the html of the page, with <noscript> part of: If this page does not automatically redirect, you have scripts disabled. The http return code was 200.I know that the reason why HttpWebRequest does not handle the redirect is because it does not execute scripts like a browser. So I just wonder if there is a way to do this without using a browser?

View 3 Replies

Security :: Bypass Login Control And Set MembershipUser?

Feb 10, 2011

Before spening anymore time researching this, I'd like some opinions.I inherited a .Net application - and I won't even mention that the previous owner built it using inline code and removed the code behind pages - so I have a LOT of fixing to do, including adding a data access layer.But, there is a login control and this sets the MembershipUser.There is a second app, written in ColdFusion, that I am passing one variable to the .Net app.We need one login for both apps. So, the CF is logged in and goes to the .Net app.I can check this var and see if the user exists but need to log the user in and set roles and Membership but bypass the login of the login control.

View 2 Replies

Allow Japanese Characters To Bypass C#s HtmlEncode Method?

Apr 4, 2011

I need to scrub data for malicious content in a form (whose website is UTF-8 encoded) so I'm doing the following:

myTextBox.Value = System.Web.HttpUtility.HtmlEncode(value); where value is the data to be placed in the TextBox.This does correctly scrub malicious data such as Javascript calls, but also turns Japanese characters into their UTF-8 equivalents, such as &#24859;

Is there a way to skip those characters from being encoded, like some sort of range?

View 1 Replies

AJAX :: Show ConfirmButtonExtender Only At Some Condition

Mar 23, 2011

I want to show the confirm button extender but only at some condition after clicking the button. Is there any way to do this without using javascript ?

View 4 Replies

AJAX :: Confirmbuttonextender - Nothing Pops Up On The Screen

Feb 5, 2010

I added a button on my website and tried to use confirmbuttonextender. I inserted it and enabled it on the button but when I run the application and click the button, the page just posts back, no pop up message or anything comes up. What would cause this? I don't get any errors

<asp:Button ID="Button1" runat="server" Text="Button" />
<asp:ConfirmButtonExtender ID="Button1_ConfirmButtonExtender" runat="server"
ConfirmOnFormSubmit="True"
ConfirmText="Once data has been updated, it can't be retreived" Enabled="True"
TargetControlID="Button1">
</asp:ConfirmButtonExtender>

View 20 Replies







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