Search

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

Matching Posts

  • Re: New ASP.NET AJAX Web Site - Kleenex.com

    Thanks! The search index is updating but that is outside my control. I hope to see it showing proper results soon.
    Posted to Announcements (Forum) by offwhite on 4/18/2008
  • New ASP.NET AJAX Web Site - Kleenex.com

    We just launched the site earlier this week. It uses ASP.NET AJAX as well as jQuery for the dynamic UI used throughout the site. Kleenex.com
    Posted to Announcements (Forum) by offwhite on 4/17/2008
  • Re: Authentication_JSON_AppService.axd/Login - 404

    I discovered the problem on my system was that I was not using the MembershipProvider for the authentication for the site because it is so customized. But the web services relies on the default provider which uses SQL Express which is not even installed on this computer. So I implemented a MembershipProvider and just implemented the ValidateUser method while the rest of the methods throw exceptions. Since they are never called it is not a problem. With the custom provider built I configured it in
  • Re: Frustrations with Javascript

    Go and get this book... Pro JavaScript Techniques It is an Apress book by John Resig. It will teach a lot about how to write JavaScript properly and several of the ins and outs that you need to understand to avoid most headaches. I have many older JS books but they are really on the wrong track. You will see what I mean once you read the book. John Resig also happens to be the lead developer for jQuery but his book covers multiple libraries briefly. Reading the book will give you the necessary fundamentals
    Posted to Client Side Web Development (Forum) by offwhite on 1/6/2008
  • Re: datetime picker

    Your web.config is not set up right. There are many similar errors like this in the forums with the answers you need. Do a search for you error.
    Posted to Web Forms (Forum) by offwhite on 9/9/2007
  • Re: datetime picker

    You need to install the AJAX framework and the toolkit. This video explains how to get started. http://www.asp.net/learn/ajax-videos/video-75.aspx
    Posted to Web Forms (Forum) by offwhite on 9/8/2007
  • Re: FileUpload path doesnt stay if user fails CAPTCHA

    This is done because of how the security is set for file uploads. You cannot set the path of the upload control from the server-side which is done during a PostBack for normal controls like the TextBox. What you could do is take the uploaded file and not show the upload control after the PostBack and use the uploaded file once the user passes captcha. You could also develop an AJAX solution for captcha that will check the captcha value when the submit button is clicked and handle the error handling
    Posted to Web Forms (Forum) by offwhite on 9/8/2007
  • Re: datetime picker

    You can use the AJAX calendar control. http://www.asp.net/learn/ajax-videos/video-124.aspx
    Posted to Web Forms (Forum) by offwhite on 9/8/2007
  • Re: CreateChildControls called too soon

    I would still use the CompositeControl as the base class. You may be able to change how you initialize your controls so the GridView does not break them. Look at my Messenger control which uses the CompositeControl. You will see how it initializes the controls so that it does not have a problem. You can find the source here... http://www.smallsharptools.com/
    Posted to Data Presentation Controls (Forum) by offwhite on 8/13/2007
  • Re: CreateChildControls called too soon

    Be sure to always call EnsureChildControls() when you set properties on your control. This makes sure the controls are initialized before you use them. And it also helps to do your databinding in the PreRender event if possible. Internally in the GridView waits till the PreRender event is fired to check if the control needs data. If it does, it binds the data. Although if it was already bound it does nothing.
    Posted to Data Presentation Controls (Forum) by offwhite on 8/10/2007
Page 1 of 21 (206 items) 1 2 3 4 5 Next > ... Last »