473,772 Members | 2,414 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

support asp debug in vs 2005?

js
Is it possible to change the web.config or machine.config file to allow
access to an .asp page? I'm new to .Net 2.0. Thanks.

I got error:

Server Error in '/xxx1' Application.
--------------------------------------------------------------------------------

This type of page is not served.
Description: The type of page you have requested is not served because it
has been explicitly forbidden. The extension '.asp' may be incorrect.
Please review the URL below and make sure that it is spelled correctly.

Requested URL: /xxx/admin/upgrade.asp

Mar 15 '06 #1
4 4153
js wrote:
Is it possible to change the web.config or machine.config file to
allow access to an .asp page? I'm new to .Net 2.0. Thanks.

I got error:

http://www.aspfaq.com/show.asp?id=2147
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Mar 15 '06 #2
js
Thanks Bob,

how to debug asp in Visual Web Developer 2005, I set an breakpoint, but it
didn't stop there.
it said: the breakpoint will not currently be hit. no symbols have been
loaded for this document.

how to set it up?

Thanks again.

"Bob Barrows [MVP]" <re******@NOyah oo.SPAMcom> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
js wrote:
Is it possible to change the web.config or machine.config file to
allow access to an .asp page? I'm new to .Net 2.0. Thanks.

I got error:

http://www.aspfaq.com/show.asp?id=2147
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Mar 15 '06 #3
js wrote:
Thanks Bob,

how to debug asp
classic asp or .Net?
in Visual Web Developer 2005,
There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-savvy person here who can
answer your question, you can eliminate the luck factor by posting your
question to a newsgroup where the dotnet-savvy people hang out. I suggest
microsoft.publi c.dotnet.framew ork.aspnet.

I set an breakpoint,
but it didn't stop there.
it said: the breakpoint will not currently be hit. no symbols have
been loaded for this document.


For this question, I would suggest microsoft.publi c.vsnet.debuggi ng
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Mar 15 '06 #4
Tools - Attach to Process - w3wp.exe

Do this and open asp file, points break point, then you can debug

--
/*************** *************** ***/
Blog : http://ddongdog.egloos.com
Wiki : http://wiki.ddongdog.com
JinHyoung Lee
/*************** *************** ***/
"js" <js@so*****@hot mail.com> wrote in message
news:eA******** ******@TK2MSFTN GP12.phx.gbl...
Is it possible to change the web.config or machine.config file to allow
access to an .asp page? I'm new to .Net 2.0. Thanks.

I got error:

Server Error in '/xxx1' Application.
--------------------------------------------------------------------------------

This type of page is not served.
Description: The type of page you have requested is not served because it
has been explicitly forbidden. The extension '.asp' may be incorrect.
Please review the URL below and make sure that it is spelled correctly.

Requested URL: /xxx/admin/upgrade.asp

Mar 17 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1805
by: marco_segurini | last post by:
Hi, At the moment I am using Visual Studio 2005 beta 1. The following program does not compile using the debug configuration setting the "Disable Language Extensions" flag to "Yes(/Za)" while using the release configuration the build has no problem. Setting "Disable Language Extensions" flag to "No" I have no problem in both debug/release configurations.
8
1923
by: | last post by:
I'm starting up the development server myself and using the "Startup Url" property of the web project. The problem is i cannot debug. The debug symbols are never loaded. I realize they are under the temporary internet files folder but I have even tried using the new depoloyment addin-in but that does not seem to work either. There is a /bin folder with the debug symboles in there but it still does not load them up How can i include the...
2
1687
by: steve bull | last post by:
how can I debug a code library using C# 2005 Express? I cannot find any way to make the library debuggable - even when I set DEBUG and No Optimize on the debug panel of the code library's property panel. When I try to invoke the library from a windows app it tells me the dll needs to be built using debug. The other alternative would be to set devenv as my startup project for the library but I can find no way to do this with the available menu...
6
4120
by: swartzbill2000 | last post by:
Hello, I have a VB 2005 Express project with a TraceListener-derived class to route Debug.Print output to a log file. It works fine for Debug builds. What is the correct combination of changes to make it work in Release build? Bill
10
1811
by: Joe Befumo | last post by:
When I tried debugging for the first time, I pop-up asked me if I wanted to set the project to enable debugging. Now I'm ready to release and can't find anyplace to set the build to 'release'. A pointer would be appreciated. Thanks. Joe
6
1485
by: William E Voorhees | last post by:
I've just installed visual studio 2005. When I make code or form changes and start debug (run program) my changes aren't seen unless I build the program first. In 2003, I didn't have to build the program after every change in code. Do I need to change a default setting in 2005?
0
929
by: offwhite | last post by:
I have been trying to do this for a very long time. Unfortunately the docs are still only covering VS 2003 on MSDN, so now that I just figured it out I put together a tutorial to share. You can find it on my blog. http://brennan.offwhite.net/blog/2006/08/30/design-time-debugging-aspnet-20-in-visual-studio-2005/ I hope this helps anyone looking to debug design-time support. I also have links to helpful authors who write about the
0
1444
by: dwivedialok13 | last post by:
I am trying to debug a SQL server 2005 SP in VS 2005. I understand that there are two types of debugging (actully 3 but I am ignoring SQL/ CLR SPs written in C# etc). 1. Direct database debugging where in we select SP and use 'Step Into Stored procedure' otion to debug. I tried that and it seems to start debugging session ( I can debug output 'Running . ...' in output window) but nothing seems to happen. It prompts me for parameters etc...
2
2707
by: Dave Johansen | last post by:
I just converted a solution from Visual Studio 2003 to Visual Studio 2005 and the Debug mode seems to be running just fine, but the Release mode crashes on the following code: std::ifstream in("myfile.txt"); float value; in >value; //The crash happens here in the getloc() function The above code is actually from a library built in Debug mode that is linked into the Release build of the executable. Does anyone have any
0
9619
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10103
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9911
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6713
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3609
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.