Search

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

Matching Posts

  • Re: How to Select Multiple Objects in Design View

    While True This is the thread that never ends; It goes on and on, my friends! Some people started posting, not knowing what it was: Now they 'll continue posting here forever just because: End While
    Posted to Visual Studio 2008 (Forum) by Frazer on 9/15/2008
  • Re: Silverlight - no thank you - again and again and again

    How about options: "yes, please install it - I am all web 3.0 and everything and know that Flash is so last year." "ask me again in 7 days when acceptance testing is over and I am in a better mood" "we shall never speak of this again" And then perhaps a link, when remorse overcomes me? Thanks for your response, by the way - now if only the MSDN site folks were so friendly and considerate....
    Posted to Feedback on this website (Forum) by Frazer on 1/24/2008
  • Re: Silverlight - no thank you - again and again and again

    My issue is not with the Silverlight Team (god bless their pointy marketing heads) but the people that run THIS site. It is the decision of the folks that manage the forums.asp.net whether or not to use/push Silverlight on their site. Were they just being Buzz Compliant - or is there any demonstrable, practical reason for Silverlight on this web site? Just because you CAN do a thing does not make it a good thing to do.
    Posted to Feedback on this website (Forum) by Frazer on 1/23/2008
  • Silverlight - no thank you - again and again and again

    I do enterprise application development for a major Canadian company. When I go to a site, such as this one or to MSDN, I am usually looking for technical information or for a solution to a problem I am working through. I have no need or desire to install Silverlight on my workstation and yet, every time I browse to this and many other Microsoft sites, I am once again presented with that damn annoying modal popup. Why on earth a technical sites need flakey eye-candy and the bloat to run them is beyond
    Posted to Feedback on this website (Forum) by Frazer on 1/23/2008
  • Re: How to Select Multiple Objects in Design View

    This is a major step backwards and typical Microsoft product team myopia. What a disappointment. I guess we will have to see what SP1 brings. As usual. [quote user="Mikhail Arkhipov (MSFT)"] Unfortunately, new designer does not support multiple selection (same as Expression Web and earlier FrontPage). This is a popular request so we are considering adding the feature in VS10 (i.e. it will not be in VS 2008). Generally speaking, positioning controls using CSS layout or tables is preferable
    Posted to Visual Studio 2008 (Forum) by Frazer on 11/27/2007
  • HMC 3.5: Behaviour of CreateSMTPDomain Method in Web Services API

    The creation of SMTP Domains with the web services API is via the CreateSMTPDomain method in the Hosted Exchange namespace . The corresponding XML namespace procedure (also called CreateSMTPDomain) includes an optional element “<createSMTPDomain/>” which, according to the documentation, causes the procedure to create the Recipient Policy. If omitted, the SMTP Domain event sink is assumed, and the Recipient Policy is not explicitly created. There is no corresponding argument on the CreateSMTPDomain
  • Re: Multiple dynamic MembershipProviders

    I am assuming that your custom provider is inheriting from the MembershipProvider base class. ApplicationName is declared as abstract in this class, and you can override that to set the appropriate value, when processing a request. SInce you are implementing the whole provider (as opposed to extending, say, Sql MembershipProvider) then I think you may need to override both the getter and setter for this property - this because your provider logic will have to figure out what to do with the ApplicationName
    Posted to Security (Forum) by Frazer on 10/31/2007
  • Re: Strange Account Lockout Behaviour

    I finally figured out what was causing this - the problem was in the implementation of account auto-unlock logic. 1 2 Public Overrides Function ValidateUser( ByVal username As String , ByVal password As String ) As Boolean 3 Dim retval As Boolean = MyBase .ValidateUser(username, password) 4 If retval = False Then 5 If pvAutoUnlockTimeout < 0 Then ' autoUnlock is not enabled 6 Return False 7 End If 8 9 Dim success As Boolean = AutoUnlockUser(username) 10 If success Then 11 Return MyBase .ValidateUser
    Posted to Security (Forum) by Frazer on 10/29/2007
  • Re: If I write my own membership provider, is the connectionstring still required to be in web config ?

    I haven't tested this - but I expect you could do the following: 1. Create a simple CustomSqlMembership provider class that inherits SqlMembershipProvider 2. Override the Initialize method on the base class 3. In the override logic, call config.add to add the required connection string attribute and value from Someplace Else 4. be sure to call the base class' Intialize method before you exit your override logic. 5. Omit the connection string from your config.
    Posted to Security (Forum) by Frazer on 10/29/2007
Page 1 of 3 (25 items) 1 2 3 Next >