Search

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

Matching Posts

  • Re: Choose Items crashing Visual Studio 2008

    It works well for me all time, but today I have experienced the same problem. I've executed the following commands in the VS 2008 Command Prompt and this helped me: devenv /setup devenv /resetuserdata devenv /resetsettings CSharp
    Posted to Visual Studio 2008 (Forum) by Pecha on 4/9/2008
    Filed under: Choose Items
  • Re: Delete Folder and SubFolder

    Just use Directory.Delete(path, true ); http://msdn2.microsoft.com/en-us/library/fxeahc5f.aspx
    Posted to Getting Started (Forum) by Pecha on 3/15/2008
    Filed under: Directory.Delete
  • Re: Host multiple domains from a single hosting account at GoDaddy.com (ASP.NET 2.0)

    I got the response from support: ------------------ Thank you for contacting Online Support. Because of the directory structure of a hosting account with secondary or 'Aliased' domains, the URL will show the full path. Unfortunately, there is no way to mask this. The only way to avoid this is to have the domains hosted in separate hosting plans. Any applications running on the aliased domains will need to take the path into account. I apologize for any inconvenience. ------------------ So
    Posted to Hosting Open Forum (Forum) by Pecha on 11/8/2007
  • Re: Host multiple domains from a single hosting account at GoDaddy.com (ASP.NET 2.0)

    hmmm. you are right. i use UrlRewritingNet in the domain1.com (root folder). i don't use UrlRewritingNet in the domain2.com. i didn't have any rules like redirect to sites/domain2 etc.. also without any UrlRewritingNet rules and at all without UrlRewritingNet everything is still the same.
    Posted to Hosting Open Forum (Forum) by Pecha on 11/4/2007
  • Host multiple domains from a single hosting account at GoDaddy.com (ASP.NET 2.0)

    I have a problem with this Adding Domains To Your Hosting Account . my first domain domain1.com points to the root directory. my second domain domain2.com point to the subdirectory e.g.: /sites/domain2 http://www.domain2.com/default.aspx - works well (http://www.domain2.com/sites/domain2/default.aspx also works well) but if i make Response.Redirect("~/Default.aspx") from http://www.domain2.com/default.aspx it will redirects me to http://www.domain2.com/sites/domain2/default.aspx. Also I'm
    Posted to Hosting Open Forum (Forum) by Pecha on 11/4/2007
    Filed under: Godaddy, multiple domains
  • Re: error statusCode when database connection fail

    You need to handle errors in the Global.asax file, this is the right solution: void Application_Error( object sender, EventArgs e) { // Code that runs when an unhandled error occurs }
    Posted to Getting Started (Forum) by Pecha on 9/6/2007
  • Re: error statusCode when database connection fail

    Take a look at this article http://support.microsoft.com/kb/306355/ Also you can throw your custom exception e.g.: web.config < customErrors mode = " On " defaultRedirect = " Error.htm " > < error statusCode = " 600 " redirect = "Error600 .htm " /> </ customErrors > Code: throw new HttpException (600, ex.Message);
    Posted to Getting Started (Forum) by Pecha on 9/6/2007
  • Re: Menu not showing up Correctly in Firefox

    If you want to avoid such problems, you need to build XHTML compliant web site. Take a look at these nice articles: http://msdn2.microsoft.com/en-us/library/aa479043.aspx http://msdn.microsoft.com/msdnmag/issues/07/04/ASPNET20/ Also you need to use "ASP.NET 2.0 CSS Friendly Control Adapters" http://www.asp.net/cssadapters/
    Posted to Getting Started (Forum) by Pecha on 9/6/2007
  • Re: URL rewriting - no .aspx extension

    Yes, this is possible. For example you can do this using UrlRewritingNet. http://www.urlrewriting.net/ http://www.urlrewriting.net/download/UrlRewritingNet20.English.pdf From the documentation: Working with Urls without file extension If you want to work with Urls without file extension you first have to configure the IIS (see page 14, settings on server) Now you have defined a default Page in the UrlrewritingNet configuration section in Web.config. With that setting requests on /folder/ are redirected
    Posted to Getting Started (Forum) by Pecha on 9/6/2007
  • Re: My server run .ASP pages and not .ASPX

    Please take a look at this Enabling ASP.NET (IIS 6.0)
    Posted to Getting Started (Forum) by Pecha on 9/4/2007
Page 1 of 6 (54 items) 1 2 3 4 5 Next > ... Last »