|
 |
aspx_beginners thread: I get a blank page - controls do not show up
Message #1 by "Mark Kettlewell" <Mark.Kettlewell@t...> on Tue, 18 Jun 2002 01:23:42
|
|
I'm running XP Pro, IIS 5.1, and VS.NET. I installed VS.NET before I
installed IIS. If I simply create a project, drop a button on the form,
and run it, the button will not show up. The page will be blank. I've
been struggling with this for some time. Does anyone have any ideas?
Message #2 by "Curtner, Lynn" <lynn.curtner@p...> on Tue, 18 Jun 2002 07:50:01 -0500
|
|
As your post suggests, you've already guessed the reason your pages aren't being rendered correctly. .NET has to be installed over
IIS. Uninstall VS.NET, then the .NET framework, then re-install.
HTH,
Lynn Curtner
> ----------
> From: Mark Kettlewell[SMTP:Mark.Kettlewell@t...]
> Reply To: aspx_beginners
> Sent: Monday, June 17, 2002 8:23 PM
> To: aspx_beginners
> Subject: [aspx_beginners] I get a blank page - controls do not show up
>
> I'm running XP Pro, IIS 5.1, and VS.NET. I installed VS.NET before I
> installed IIS. If I simply create a project, drop a button on the form,
> and run it, the button will not show up. The page will be blank. I've
> been struggling with this for some time. Does anyone have any ideas?
>
Message #3 by "Mark Kettlewell" <Mark.Kettlewell@t...> on Wed, 19 Jun 2002 04:16:04
|
|
Alas, I tried that - to no avail.
Message #4 by "Mike Costner" <mike.costner@w...> on Mon, 24 Jun 2002 17:11:32
|
|
First, ensure that you have the Protected Withevents for each control on
the form.
Second, for any subroutine that uses the control, instead of Private Sub
(button_click), use Protected Sub(button_click).
> I'm running XP Pro, IIS 5.1, and VS.NET. I installed VS.NET before I
i> nstalled IIS. If I simply create a project, drop a button on the form,
a> nd run it, the button will not show up. The page will be blank. I've
b> een struggling with this for some time. Does anyone have any ideas?
|
|
 |