Ask a Question related to ASP.NET General, Design and Development.
-
Steve C. Orr, MCSD #1
Re: aspx-page does not 'run'
You may need to repair your IIS mappings.
To do this, run the following command:
aspnet_regiis.exe -i
Here's further information:
[url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;q306005[/url]
--
I hope this helps,
Steve C. Orr, MCSD
Coder for Hire
[url]http://Steve.Orr.net[/url]
"Christian" <christian.cambier@pandora.be> wrote in message
news:EHQZa.61580$F92.7018@afrodite.telenet-ops.be...> Hi,
>
> I access a Webpage : [url]http://localhost/Comp/test.aspx[/url] but the page doesn't
> seem to 'run' (the script code does not execute)
>
> only the html-code within the <body> tags is shown.
>
> <%@ Page Language="C#" Description="ASP.NET Client " %>
> <html>
> <script language="C#" runat=server>
> void Page_Load(Object sender, EventArgs EvArgs)
> {
> Response.Write("script text");
> }
> </script>
>
> <body>
> <br> Body text
> </body>
> </html>
>
> only: "Body text" is shown in the browser
>
> I don't have this problem though on every computer ??
>
> what am I doing wrong ?
> thanks
>
> chris
>
>
Steve C. Orr, MCSD Guest
-
Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem. -
Controlling Page Access in .aspx page
I am building some .NET classes and pages that will be part of an existing classic ASP app. The ASP app uses cookies to store login information for... -
redirecting from .aspx page to .asp page
There is no great way to share session state between ASP and ASP.NET. But that doesn't mean you don't have options. Here are some common ways:... -
how to interact client script within aspx page to other page functions, etc.? PLEASE!!!
Hi, I've spent all day trying to find some info on this...please help! I have an aspx page with an xmlDocument (not dataset/relational db) with... -
importing Aspx page into ASP page
Hello I am working with Visual Studio .net and I have created an aspx page. Now I have to import this into an existing asp page. So there is a...



Reply With Quote

