Search

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

Matching Posts

  • Re: Multi-stage Downloads

    Ya you are correct, the only way to do it with the ms ajax library is to create an HTTPRequest. Other frameworks were more focused on this sort of thing or dom manipulation. The ms ajax library is mostly focused on making working with javascript feel like a .net language in my opinion. So you have sort of an illusion of classes, inheritance, some lifecycle stuff, a disposable pattern, and eventing. Personally I got so used to the eventing system from the ms ajax framework I ported it to actionscript
  • Re: Problems with IE7 and sticky footer

    try this <div id="footer" style="height:45px;right:0px;bottom:0px;left:0px;background-color:#333;position:fixed">..</div> That should work in FF, IE7, IE8, Safari, & Chrome. I don't believe it will work in IE6... but what does.
    Posted to Client Side Web Development (Forum) by BradFMJ on 6/7/2009
  • AJAX Control Toolkit VisibilityMode Bug

    Posting on these forums keeps timing out for me today, maybe its the code I was including so I will post the abreviated version. The old MicrosoftAjax.js file performed logic in Sys$UI$Control$set_visible. This is where VisibilityMode was used to determine values for css Display property. In the new MicrosoftAjax.js this logic was all pushed out to Sys.UI.DomElement.setVisible which did not exist before. The AJAX Control Toolkit blows this away in common.js with Sys.UI.DomElement.setVisible = $common
    Posted to ASP.NET AJAX Control Toolkit (Forum) by BradFMJ on 8/13/2008
  • Re: SYS.Preview API Docs?

    There is very little documentation of sys.preview. You have probably seen http://quickstarts.asp.net/Futures/ajax/default.aspx which is very minimal and probably wont give you enough examples of things you are interested in. You should be able to put /// <reference name="PreviewScript.debug.js" assembly="Microsoft.Web.Preview" /> at the top of your js file and get some intellisense support. You can also open up the actual PreviewScript file and look through it. Looking at
    Posted to ASP.NET Futures (Forum) by BradFMJ on 4/22/2008
  • Re: Ajax Error: Sys.ArgumentException

    somewhere, somehow, you are calling $create which is short for Sys.Component.create a function in the MicrosoftAjax javascript library that takes the following parameters (type, properties, events, references, element) {name: "type" , type: Type}, {name: "properties" , mayBeNull: true , optional: true }, {name: "events" , mayBeNull: true , optional: true }, {name: "references" , mayBeNull: true , optional: true }, {name: "element" , mayBeNull: true
  • Re: Ajax.net asynchronous postback with dropdownlist outside of updatepanel

    you need to add triggers to your updatepanel if you want to update its content from outside of the updatepanel. try this code </ ContentTemplate > < Triggers > < asp : AsyncPostBackTrigger ControlID ="btnAddPart" EventName ="Click" /> </ Triggers > </ asp : UpdatePanel > where you can see the trigger block you need to insert into your existing code.
    Posted to ASP.NET AJAX UI (Forum) by BradFMJ on 2/5/2008
  • Data Controls - July 2007 Futures VS. 3.5 Extensions Preview

    If this is in the wrong forum I apologize. The various new boards and the various code releases are sort of confusing. The sticky at the top of the boards makes me think I am missing something. "the Dynamic Data Controls feature that comes with the July 2007 Futures is now obsolete and should not be used. Instead, this feature has been completely redone, and is available as part of the ASP.NET 3.5 Extensions Preview." I looked at the videos on http://asp.net/downloads/3.5-extensions/ and
    Posted to ASP.NET Futures (Forum) by BradFMJ on 2/4/2008
  • Re: Security Trimming Not Working Properly

    You could put all your admin pages into a single folder with subfolders if need be. Then put a web config in that folder blocking all but admins role <authorization> <allow roles="Administrator"/> <deny users="*"/> </authorization>
    Posted to Security (Forum) by BradFMJ on 11/27/2007
  • Re: Security Trimming Not Working Properly

    SecurityTriming is checking both the access rules for the url and the role. If either is true then it is granting access. In the case of your Edit node, there is no url. So it is just checking the role. By the looks of it, every other place where you are using the "Administrator" role you have a url specified at the root of your web app. Which I am guessing contains a web config with something like this: <authorization> <allow users="*"/> </authorization> See
    Posted to Security (Forum) by BradFMJ on 11/26/2007
  • Re: Lock out a user

    You can change their approved status to stop them from being able to login. MembershipUser ThisUser; ThisUser = Membership.GetUser(); if (ThisUser.IsApproved) { ThisUser.IsApproved = false ; Membership.UpdateUser(ThisUser); } Dim ThisUser As MembershipUser ThisUser = Membership.GetUser() If ThisUser.IsApproved Then ThisUser.IsApproved = False Membership.UpdateUser(ThisUser) End If
    Posted to Security (Forum) by BradFMJ on 11/12/2007
Page 1 of 14 (132 items) 1 2 3 4 5 Next > ... Last »