Search

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

Matching Posts

  • Re: Transferring Web Applications from ASP.NET 2.0 to 3.5

    This worked. I tried removing the sections and also tried using Clear. Thanks.
    Posted to Configuration and Deployment (Forum) by cyprich on 6/9/2008
  • Re: Transferring Web Applications from ASP.NET 2.0 to 3.5

    Ok, here it is: ---------------------------------------------------------------------------------------------------------------- Detailed Error Information Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x800700b7 Config Error There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined Config File \\?\D:\Virtual Folders\Account Application\web.config Requested URL http://localhost:80/AccountApplication/Default.aspx Physical
    Posted to Configuration and Deployment (Forum) by cyprich on 5/30/2008
  • Transferring Web Applications from ASP.NET 2.0 to 3.5

    I'm having problems getting 2 ASP.NET 2.0 web applications to work on Windows 2008 and ASP.NET 3.5. I've added them as Applications to an existing web site. They're accessed as www.website.com/OrderForm/. Both applications worked well on Windows XP Pro as virtual folders. When I run them on Windows 2008, I get HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. I've tried rebuilding the site
    Posted to Configuration and Deployment (Forum) by cyprich on 5/29/2008
  • Problems with System.EventHandler

    I have an order form that checks if the due time date is valid before submitting the order and uploading files. I'm using the open source NeatUpload (http://www.brettle.com/neatupload) for the upload control and progress bar. The problem is that if a user tries to upload a file and the due time is not valid, the file will still upload (going to a temporary non-saved location), and then an error message will appear on the form asking them to set a valid due time. What causes this I think is that
    Posted to Web Forms (Forum) by cyprich on 5/5/2008
  • Re: Problems with DropDownList and Session Variables

    Thanks. That solution worked. I had to add IsPostBack to prevent it from reloading the current time everytime a PostBack occured: if (!IsPostBack) SetDateTime ();
    Posted to Web Forms (Forum) by cyprich on 3/12/2008
  • Problems with DropDownList and Session Variables

    I'm having problems with DropDownLists in an ASP.NET 2.0 web site. It allows the date and time to be set through DropDownLists. I set these values to the current date and time rounded up to the nearest 15 minute block in the Page_Load function. When the form is submitted, the current values of the DropDownLists (which are normally changed by the user) are saved into a session to be used on another page. The problem here is that if the user changes any values in the date or time, they don't
    Posted to Web Forms (Forum) by cyprich on 2/25/2008
  • Re: CSS Problems with Firefox

    I finally solved the problem. The <asp:Label> control doesn't work well with Firefox no matter what I try. I needed a fixed width label with text inside justified to the right. I found a solution using a standard HTML tag, <label>, and using CSS to get the formatting I needed. This is a cross platform solution. I'm sure there must be some setting in ASP.NET to make the <asp:Label> work in Firefox. My settings for ClientTarget and browserCaps worked on every browser except
    Posted to Web Forms (Forum) by cyprich on 2/8/2008
  • Re: Save ASP.NET Page as HTML

    Deepak, that sounds like a good solution, but I'm still new to using user controls in ASP.NET. I tried your solution but I couldn't get to work, so its back to the books to learn this technology first. :)
    Posted to Web Forms (Forum) by cyprich on 2/8/2008
  • Re: CSS Problems with Firefox

    I ran it through the validator and fixed minor problems. It still doesn't render properly in Firefox. I also upgraded the .NET to 3.5, but I don't have an option of changing the version the web site uses in IIS. The page looks ok in Safari and Konqueror, but Firefox isn't given the CSS for formatting.
    Posted to Web Forms (Forum) by cyprich on 2/4/2008
  • Save ASP.NET Page as HTML

    I'm not sure if there is an easy way of doing this. I'm trying to create an HTML page that gets sent as e-mail attachment. I would like to create an ASP.NET form, populate the relevant labels with data, then save this page as an HTML file so that the e-mail recipient can view and print the page. I'm currently using WriteLine to build the HTML file for saving, i.e. sw.WriteLine ( " <h1>Work Order</h1><br><br>" ); sw.WriteLine ( " <table cellspacing
    Posted to Web Forms (Forum) by cyprich on 2/4/2008
Page 1 of 2 (16 items) 1 2 Next >