Help: Can't run ASP control .

  • Thread starter Thread starter Brian W
  • Start date Start date
B

Brian W

When you run it and do view source from the browser what does it show?

Can you post the source on the offending page?

Regards
Brian W
 
Try running aspnet_regiis.exe -i from a comman prompt
(you may have to search for it)

HTH
Brian W
 
it does, but I've had it suddenly "unregister" itself occasionally....
I have to do that ever couple weeks personally, with framework 1.0 at least.
 
Folks,
I have problem running simplest ASP.Net programs with IIS web server.
As a test I just added some text box and dropdown list with Visual Studio
but when I run this my page shows nothing.(blank page without error.)
I can run this with asp matrix web server.
Can you please let me know what is wrong.?
Thank you .
 
It's up to them to ensure it doesn't.
I've ONLY EVER had it happen in a development environment.

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
 
Hi,
The source is exactly the same as the asp.net code ,means that the iis
engine not woking. Right?

<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb"
Inherits="WebApplication1.WebForm1"%>
<HTML>
<form id="Form1" method="post" runat="server">
<asp:DropDownList id="DropDownList1" style="Z-INDEX: 101; LEFT: 168px;
POSITION: absolute; TOP: 73px" runat="server"></asp:DropDownList>
<asp:TextBox id="TextBox1" style="Z-INDEX: 102; LEFT: 66px; POSITION:
absolute; TOP: 33px" runat="server" Width="137px"
Height="17px"></asp:TextBox>
<asp:Label id="Label1" style="Z-INDEX: 103; LEFT: 19px; POSITION:
absolute; TOP: 97px" runat="server" Width="52px"
Height="12px">HELLO</asp:Label>
<asp:Button id="Button1" style="Z-INDEX: 104; LEFT: 18px; POSITION:
absolute; TOP: 123px" runat="server" Text="Button"></asp:Button>
</form>
</HTML>

Do you why these asp control doesnt show anything on the browser?
Thank you.
 
Thank you so much. It worked.
Why asp.net dosnt register itself when I install net framework or wisual
studio.
Thank you again.
Mehrtash
 
Thank you so much ,It worked.

Why after installing .net framework or Visual studio .net , It doent get
registered?and why it should be registered manuall?

Best Regards,
Mehrtash
 
What will happen then if somebody host your web site?
If it unregister it is too late ,isnt it?
Regards,
Mehrtash
 
Glad to hear it worked out for you.

Contrary to what Curt_C said, I, personally, I have never had it
"un-register" itself (.NET 1.0 or 1.1), but that's just me. The only time I
have ever seen this problem is if IIS isn't installed (which it isn't by
default on XP) before installing the .NET Framework.

Good luck
Brian W
 
Back
Top