Search

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

Matching Posts

  • Login prompt after page is idle when using update panel

    Hi Ok hoping someone can help me out here. My scenario. I have a page that uses windows authentication that has a update panel on it wrapping a drop down list. If the page is left for around 20 minutes and then you trigger the drop down which in turn triggers the update panel the browser (IE) displays the standard credentials login popup. I'm guessing it maybe something to do with the session timing out but I'm not entirely sure how i can handle the scenario so the popup doesn't appear. This is on
    Posted to ASP.NET AJAX Networking and Web Services (Forum) by andybritcliffe on 4/4/2007
    Filed under: update panel, Authentication
  • Re: Collapsible Panel help

    Hi The problem you have is the update panel wrapping the CPE which iun essence swallows the animation. If you are trying to dynamically load within the CPE you need to reorder your syntax accordingly" < cc1:CollapsiblePanelExtender ID= "CollapsiblePanelExtender1" runat= "server" TargetControlID= "pnlLeadDetails" CollapsedSize= "0" ExpandedSize= "500" Collapsed= "true" ExpandControlID= "linkbutton1" CollapseControlID= "linkbutton1" AutoCollapse= "false" AutoExpand= "false" ScrollContents= "true
  • Re: Beta 2 deployment problem on W2k3

    Hi Paede Thanks for the reply. I tried that but no luck. I have managed to track down the issue to the application settings of my website. The .axd extension was set to check for the physical file so it was returning 404's on WebResource.axd and ScriptResource.axd. I unchecked that and it is now happily working. Thanks Andy.
  • Beta 2 deployment problem on W2k3

    Hi I've got a web app project developed on XP and using the Ajax Beta 2 bits running fine. I've installed Beta 2 on my deployment machine (which is a w2k3 box) and deployed my site. When I go to view the site I get a javascript error notification which which says 'Sys' is underfined. I'm guessing that the core ajax libs are failing to load, but I've no idea why. I've checked that the ajax dll's are in the GAC (they are), I've also disabled HTTP Compression but I'm still hitting the Sys error. Anyone
  • Re: Calling a Page Method Instead of a Web service method with javascript?

    Hi miskiw Yes you can do that, you can find details here http://ajax.asp.net/docs/tutorials/useWebServiceProxy.aspx at the bottom of the page titled "To call a static page method". It is worth noting that there is a bug with this in the current release where you can only call methods that are inline. You cannot currently make async calls to methods that are in code behind. HTH Andy.
  • Re: ModalPopup

    As for your second question you could have script such as function SetModalContent() { $(' Panel1 ').innerHTML = "YOU CONTENT HERE"; } and then just add the call to this function on your linkbuton.
  • Re: ModalPopup

    Hi Can you make sure you have the correct css in place e.g /*Modal Popup*/ .modalBackground { background-color:Gray; filter:alpha(opacity=70); opacity:0.7; } .modalPopup { background-color:#ffffdd; border-width:3px; border-style:solid; border-color:Gray; padding:3px; } This should make it dispkay correctly. HTH
  • Re: How to show/hide PopupControlExtender programmatically?

    Hi Boshik You will find the code that controls the closing of the popcontrol in the PopupControlBehaviour.js. The actual code is this: // Called automatically when a page load/postback happens this .close = function () { alert( 'close' ); // Look at result of popup var e = this .control.element; var value = AtlasControlToolkit.PopupControlBehavior.callBaseMethod( this , 'get_ClientState' ); if (0 < value.length) { if ( '$$CANCEL$$' != value) { // Result is to be committed if (_commitProperty)
  • Re: Multiple dataviews in a dropdownlist

    Thanks for your help guys. I found a soluition, whether or not it is the best I don't know but it works, basically I returned 2 datasets and then used the merge() to put them into one list and bind it to the drop down.
    Posted to Web Forms (Forum) by andybritcliffe on 2/3/2004
  • Multiple dataviews in a dropdownlist

    Hi I'm query a database twice to get 2 sets of lists of names each in a dataview, now what I want to do is combined those lists and display them in a drop down list. Could anyway give me some guidance on how I can combine these 2 list and get them to display in a single drop down list. thanks
    Posted to Web Forms (Forum) by andybritcliffe on 2/2/2004
Page 1 of 2 (15 items) 1 2 Next >