I have godaddy hosting plan in which multiple domains can be created. In one such domain (not primary) I have hosting my .net app. I am getting error 500
In the web.config file I have included
<system.webServ er>
<httpErrors errorMode="Deta iled" />
<asp scriptErrorSent ToBrowser="true "/>
</system.webServe r>
<system.web>
<customErrors mode="Off"/>...
Search Result
Collapse
8 results in 0.0057 seconds.
Keywords
Members
Tags
-
deploy asp.net app in godaddy server
-
Machine Key validation is not working for an app in a web farm
I have a C# app which is hosted in 2 servers in a web farm with NLB cluster. I added the same machine key in the web.config in both the servers but still when I drop one machine out of the cluster, the app logs out instead of continuing the same session with the other server. I also tried adding the machine key in the machine.config but still in vain. Am I missing something? -
MachineKeys in web.config and app.config "Unable to validate data"
I wrote a small c# winform app to migrate some user info from one DB to another. The application works jsut fine but when I use the web application now it bombs trying to read the users password with "Unable to validate data". This is from the Membership class.
In the exe's aspp.config I have the same machinekey as the web applications web.config so their shouldn't be an encryption issue. Does anyone have any suggestions?... -
Error when trying to view website on GoDaddy.com servers
I have a website which performs perfectly on my local machine, however when I upload all of the necessary files to my GoDaddy.com server and attempt to view the site live on the web I receive the following error message -
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource... -
web.config not getting accessed
hi
I am using vs2005 for asp.net website development. I published my website. I transferred all files on the server using ftp.
After transferring I tried to browse my website but I am getting following error
Server Error in '/' Application.
_______________ _______________ __________
Runtime Error
Description: An application error occurred on the server. The current custom error settings... -
how to read web.config from iis web directory
hi all
i am using a windows application as well as web application developed in visual studio 2010 beta 2 using .net framework 4 on windows xp/windows server 2008/windows7
i am able to read web.config file on system running windows XP sp2 but same is not read by windows 7 and windows server 2008
i installed my web application on iis 7 on said windows with .net 4 but it not read web.config by my windows... -
Web.config and environnement var
Hi,
I knew that with ASP.NET 2.0, we couldn't use environnement variables in the web.config.
But I don't find any ressources for this case on 3.5.
Is it possible now ?
thx -
URL rewriting and web.config
I am using ASP.net(c#) for my project. In my my project 2 pages are using URL rewriting method by referring this article
URL Rewriting using Intelligencia UrlRewriter Example 1 - Blog Day Afternoon
from my form i used this code.
Response.Redire ct("showdetail s/" + a);
in my Web.config
[code=xml]
<system.webServ er>
<modules runAllManagedMo dulesForAllRequ ests="true">...