Taking my ASP.NET from my local comp to the server
Posted
by Andrew G. Johnson
on Stack Overflow
See other posts from Stack Overflow
or by Andrew G. Johnson
Published on 2010-03-26T15:39:03Z
Indexed on
2010/03/26
15:43 UTC
Read the original article
Hit count: 278
Hi All,
So I have been developing a small ASP.NET web app in C# for my company over the past few weeks and now I am trying to push it onto our Rackspace server. First step was to create a virtual directory because we want it to be www.ourdomain.com/appname/ and most of the stuff on ourdomain.com is currently in classic ASP. So I did this and then uploaded my stuff to the new folder. I *think* I did this at least semi-right because the error message I am getting is that nice puke color (ASP.NET style instead of classic ASP style) -- problem is it is generic and just saying runtime error. I tried just copy/pasting <customErrors mode="On" />
into the web.config file in the /appname/ directory but nothing changed
So the actual questions are:
- How can I get a more descriptive error, when I was developing locally I just pushed the "play button" in VS2010 and it would either show me the app or tell me where I screwed up
- Is there anything else I'm doing wrong that may be causing this? If there's things I need to check lemme know!
© Stack Overflow or respective owner