Search

You searched for the word(s): userid:793899

Matching Posts

  • Re: FormsAuthentication.SignOut() not deleting auth cookie in FireFox

    [quote user="crato"] Hello carneyalansford , although i haven't tried it, before calling FormsAuthentication.SignOut(), set the expiration date of the auth cookie to a past date, like the example in the following site: http://stackoverflow.com/questions/638661/why-is-it-that-my-cookie-is-not-getting-deleted-unset [/quote] Thx for the link, it helped me a lot. In my case a simple Response.cookies.clear() Solved my problem !
    Posted to Security (Forum) by ForceMagic on 4/3/2009
  • Re: ModalPopupExtender Struck in Safari

    Hello, I had the same problem than you and I understood that the Modal Popup Extender is not supported by all browsers. I also had problems with Chrome and Opera. At my job we only support Internet Explorer and Firefox, so because we ran out of time, we just didn't care about other browsers than doing plenty of Select Case everywhere to customize the code for each browser. So, first I suggest you to double check and be sure the control is 100% supported by the browser (I'm not sure about
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/25/2009
  • Re: ModalPopupExtender

    Hello, I've been using a RequiredFieldValidator in a modal popup like you, but I just want to warn you, you could have some issue about it. First, there is a property EnableClientScript, you must set it to True if you want the control to validate on client side. Which is needed for your modal popup extender. <asp:RequiredFieldValidator ID="myValidator" runat="server" meta:resourcekey="locationValidator" ControlToValidate="yourTextBox1" EnableClientScript
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/16/2009
  • Re: Problem with modal popup extended and handling control events

    Oh well, I understand now. The problem is that Modal Popup Extender is ClientSide, so even if you find a way to do a postback, the page will reload and the Modal Popup extender will hide each time. If it's possible, try to do your code in a javascript function client side and then changing your image preview from there using hidden property or something like that.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/14/2009
  • Re: Show the ModalPopupExtender

    Hello, - The TargetControlID is the control who will fire the Modal Popup, so you don't need at all the javascript function. </head> < body > < form id= "form1" runat= "server" > < asp:ScriptManager ID= "ScriptManager1" runat= "server" > </ asp:ScriptManager > < br /> < asp:LinkButton ID= "LinkButton1" runat= "server" OnClick= "LinkButton1_Click" >Please click Here to Enter Something
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
  • Re: Problem with modal popup extended and handling control events

    Hum... in the Modal Popup case I would put the Update Panel inside the Modal Popup Panel... More like this : <asp:Panel ID="SelectLocalFilePanel" width="500px" height="300px" CssClass="modalDialog" runat="server"> < asp:UpdatePanel ID= "UpdatePanel1" runat= "server" UpdateMode= "Conditional" > < ContentTemplate > < table border= "0" cellpadding= "0" cellspacing= "0" height
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
  • Re: Question using ModalPopup

    Hello, Could you just disable the Print button after the click of the user ? Then he won't be able to click again and you just have to reset the property to true when the Modal Popup is opening Adding a javascript function client side on the OnClientClick event would work great I guess ! something like : function disableButton(btnID) { var button = $find(btnID); button.disable = true; } And then on the event " OnClientClick="disableButton(this.id)" Just check which ID he's
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
  • Re: Modal Popup control

    [quote user="MetalAsp.Net"] You could register a startup script that uses the setInterval() javascript function. This will trigger a function at a specified interval, where you can show an alert message or whatever else you wish todo in the function. [/quote] Good point, I think if it's mandatory for the user to save you could even do it for him with that function ! Or if you prefer, maybe you could add a function who save for him when he close the Modal popup, I don't know how
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
  • Re: CollapsiblePanelExtender Not working

    [quote user="venziar"] HI INSTEAD OF GOING FOR A THIRD PARTY CONTROL I PREFER U USE AJAX TOOLKIT CONTROL http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CollapsiblePanel/CollapsiblePanel.aspx AS LIKE THIS I HOPE THIS ONE WILL HELP U. THANKS VENKY [/quote] The current problem with this "solution" is that they is a chance that it won't work in all Browser, which is not cool. Of course it depends on the Control, the version of the toolkit and your VS. But, even if you have
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
  • Re: Sys.Application.add_load Problem with Modal popup extender

    Hello, Finally I found a workaround for my current problem. I'm still using the ClientScript.Resgister[...] but this time I also change the OnClientClick Javascript function of my cancel button. So when the guy select the feature "Save and Add New", when the page reload and the modal Show again if he click on Cancel I do a postback to the server just to reload the page and solve those weird behavior. I also think, the problem could exist because of the different Update Panel in my code
    Posted to ASP.NET AJAX Control Toolkit (Forum) by ForceMagic on 2/13/2009
Page 1 of 10 (93 items) 1 2 3 4 5 Next > ... Last »