Aspx not compiling

D

DanB

I use VB.NET Std Edition and I am building a web application. I have two
problems that may or may not be related.

1) The debugger does not work.
2) If I ignore the debugger, build the project, and then access the aspx
form from the browser none of the ASP controls or code work.

BTW I am viewing the form through a server that is running i.e.
(http://localhost/webapplication1//webform.aspx)

If I view the source code of the form from within the browser I find that
all of the <Asp> tags are still present. Thus I conclude that this form is
not being compiled.

Can some one help me please.

Dan

P.S. Please excuse the double post - I posted another in the framework
group but now I think this group seems like it would be a better choice.
 
G

Guest

Dear Dan

Can you post the code in your page.. if you view the view source, you will
not be able to see the <asp tags. instead you should be able to see tags
like <input type>
because though you use <Asp> tags, the browser will render only <input type
internally.

I think either you should have put the code outside the form tag or there
must be other problems.

anyways, having a view of the page should help. thanks.
 
H

Hermit Dave

you need to execute the following

go to command prompt and go to
%WindowsDirectory%\Microsoft.NET\Framework\framework_version
framework_version is the directory for version of framework and execute

aspnet_regiis -i

this should sort it out.

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
 
D

DanB

YES!

That did it. At least it got me on the right path.

For any one else out there having the same problem I also had to
* remove Framework 1.1 and went back to 1.0
* remove FrontPage ServerExtension and re-create / install FP Extensions on
the default Website

Thanks for your help - Everyone

Dan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top