Can't start debugger and other issues

barski

Well-known member
Joined
Apr 7, 2002
Messages
239
Location
Tennessee
Got a new computer yesterday. Instlled IIS and Vs.net then tried a couple of simple forms to see if everything worked ok before moving all my projects to the new computer. Guess what I have issues

1. When I try and run the application the asp debugger cant be started
2. Controls are displaying but they show in the the left corner of the form no matter where I place it
 
1. Do you get any error messages related to the debugger not starting? If it is just that is cant but the project builds ok, this is usually related to something in your code that the debugger cant understand. Have you been able to run the application without debugging?

2. Check that your pageLayout property on the form is GridLayout. If it is, items should show up on the form where you place them. If it is and items are still in the wrong place, try using FlowLayout. It may be that you are hitting enter when you want to move something down. If you know HTML you can just look at the HTML section of the form builder and use code to put things where you want them. If you do not know HTML but would like to control it through code take a look at http://www.w3schools.com.

Eva
 
Figured it out. To anyone whos interested it had something to with the order in which iss and the .net framework was installed. When I checked my ISS documents the .aspx extension wasnt inlcluded. First I uninstalled everything, second I installed the .net framework, and finally iss. Everything works fine now. Dont know why it works now but it made all the difference in the world
 


Write your reply...
Back
Top