louderthanu
Programmer
I am so frustrated!! I cannot get any of the .net code to run...
for instance
sub page_load()
response.write("hello world"
end sub
returns nothing... I can however put any asp controll EXCEPT a lable on the page, but only when it is written in the <body> of the page...
ie.
<script language="vb" runat="server">
message.text = "aggggh!" />
<body>
<asp:label id="message" runat="server" />
<asp:dropdownlist id="dropdown" runat="server">
<asp:listitem>This</asp:listitem>
<asp:listitem>Sucks</asp:listitem>
</asp:dropdownlist>
</body>
In this example, the dropdown list displays but not the lable tag.
If I set the "text" property for the tag in the tag it's self, it works...
that is
<asp:lable id="message" text="I hate this!" runat="server" />
works!
Obviously, it's not running the server-side script...
I have run aspnet_regiss.exe and made sure that the aspnet_aspi.dll is properly registered as per the knowledge base articles.
I am experiencing this on three machines and it's making me crazy! Please help!!!
Thanks
Kevin Howell
Briefcase of Talent
Austin, Tx.
for instance
sub page_load()
response.write("hello world"
end sub
returns nothing... I can however put any asp controll EXCEPT a lable on the page, but only when it is written in the <body> of the page...
ie.
<script language="vb" runat="server">
message.text = "aggggh!" />
<body>
<asp:label id="message" runat="server" />
<asp:dropdownlist id="dropdown" runat="server">
<asp:listitem>This</asp:listitem>
<asp:listitem>Sucks</asp:listitem>
</asp:dropdownlist>
</body>
In this example, the dropdown list displays but not the lable tag.
If I set the "text" property for the tag in the tag it's self, it works...
that is
<asp:lable id="message" text="I hate this!" runat="server" />
works!
Obviously, it's not running the server-side script...
I have run aspnet_regiss.exe and made sure that the aspnet_aspi.dll is properly registered as per the knowledge base articles.
I am experiencing this on three machines and it's making me crazy! Please help!!!
Thanks
Kevin Howell
Briefcase of Talent
Austin, Tx.