Search

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

Matching Posts

  • Re: How to use three tier architecture in a web project

    I am a fan of the Model-View-* patterns myself. Where * is either a Controller or Presenter (aka Supervising Controller). This podcast has some great flash-based screencasts that show the development of a MVP web app from the ground up. http://polymorphicpodcast.com/shows/mv%2Dpatterns/ R
    Posted to Architecture (Forum) by RichWillmore on 6/26/2007
  • Simple ASP.NET search engine ??

    Searching for 'free ASP.NET search engine' simply yields too many results. Are there any decent, simple, search engines out there to spider (or DB-crawl) an ASP.NET application? R
    Posted to Getting Started (Forum) by RichWillmore on 6/12/2007
  • Re: Calendar Control: Add hyperlink to cell day text

    That certainly worked. Thank you. I was hoping it was possible to 'decorate' the existing text with a hyperlink (that would be nice), but this works just fine. R
    Posted to Web Forms (Forum) by RichWillmore on 4/16/2007
  • Calendar Control: Add hyperlink to cell day text

    By default the calendar's cell's day text (i.e. 1, 2, 3) raises a postback. How would I go about changing these to hyperlinks? I've changed the SelectionMode calendar property to 'None' to eliminate the postback links. Something in DayRenderEventArgs perhaps? R
    Posted to Web Forms (Forum) by RichWillmore on 4/13/2007
  • Re: Control-Less Custom Validation (ASP.NET 1.1)

    Oops... 'ControlToValidate' is not required. My curse for using SharpDevelop with no ASPX intellisense. Nevermind. R
    Posted to Web Forms (Forum) by RichWillmore on 4/4/2007
  • Control-Less Custom Validation (ASP.NET 1.1)

    I have a FileUploadControl.ascx custom user control that -- you guessed it -- uploads files. The form that uses this control must validate that this control has indeed uploaded a file. FileUploadControl has a boolean property (from its interface) IFileUploadControl.HasFile. What I would like to do is have a simple custom validation routine that would fire along side the native validation controls and if it fails will tack its validation message onto the validation summary control. This would probably
    Posted to Web Forms (Forum) by RichWillmore on 4/4/2007
  • 'Form Wizard' in ASP 1.1

    ... unfortunately stuck in ASP 1.1 for this particular application because we are integrating with a .NET 1.1 Portal. We are trying to create a 9-step form wizard using an MVP pattern. Each step in the wizard contains a VERY large form -- some with 30-fields-plus a piece. Switching between panels in a single ASPX page would work but we would end up with an unmanagably large ASPX. Our current approach is to use 9 ASCX controls and simply turn the visibility on/off as needed from within a single ASPX
    Posted to Web Forms (Forum) by RichWillmore on 1/22/2007
  • Re: Significant Performance difference if SELECT command contains user

    The table only has 10 records. All 3 SELECT statements return the EXACT same 10 records. But the middle on takes 30 seconds to return its results.
  • Significant Performance difference if SELECT command contains user

    SQL 2000 Connection String: user id=MyUserName;password=MyPassword;initial catalog=MyDB;server=MyServer;Connect Timeout=30 This SELECT statement returns its 10 results nearly instantly: SELECT * FROM MyTable Ditto from above, but completes in 30-40 seconds: SELECT * FROM [dbo].[MyTable] Ditto from above, but completes nearly instantly: SELECT TOP 1000 * FROM [dbo].[MyTable] Obviously I have stopped using the [dbo] syntax in my SqlCommand's (SELECT's and EXECUTE's) but still would like
  • Re: Displaying Image from database

    I believe he intends on storing the image IN the database rather than a URL linking to it. Because of wacky firewall restrictions I have gone down this road with some success with SQL server. The solution I used was to first convert the binary file to a base64 string and store that in an NTEXT field. Upon a standard SQL SELECT I then re-create the binary file and stream it out to the response object. Since base64 is a string you can then encapsulate the file in an XML object or a WSDL SOAP response
    Posted to Web Forms (Forum) by RichWillmore on 10/5/2006
Page 1 of 7 (63 items) 1 2 3 4 5 Next > ... Last »