|
 |
aspx_beginners thread: Can't get Class Browser to work
Message #1 by "Darrel Austin" <darrelaustin@h...> on Fri, 30 Aug 2002 23:36:35
|
|
Well, after a month or so off from ASP.NET, I'm back with a new computer,
a new install of ASP.NET, and the NEW copy of "Beginning ASP.NET 1.0 with
VB.NET" (the one NOT based on beta code ;o)
So, things are good, except that I *still* can't get the class browser to
run. I get the following error:
=============================
Compiler Error Message: BC30002: Type 'SortTable' is not defined.
Source Error:
Line 89:
Line 90: If CorClasses(x).Namespace = CurrentNameSpace
And CorClasses(x).IsPublic
Line 91: Dim props As New SortTable("GetType")
Line 92: props("GetType") = CorClasses(x).Name
Line 93: props("Namespace") = CorClasses
(x).Namespace
=============================
I googled it and it turned up one page, which happens to be on this site:
http://p2p.wrox.com/archive/aspx_beginners/2001-11/3.asp
It mentions "To execute the quickstart pages you must execute
the setup up proceedure in the starthere.htm page first. It installs all
classes automatically in the web server main path."
However, I don't quite follow what that means.
Message #2 by Imar Spaanjaars <Imar@S...> on Sat, 31 Aug 2002 09:45:13 +0200
|
|
Well, I guess it means you have to install the quick starts which,
apparently, you haven't done yet.
The .NET runtimes comes in two flavors: a simple distribution of around 20
mb and an SDK, including the runtime and a zillion samples of how to do
stuff in .NET. This download is around 120 MB. Make sure you use this one
to install .NET
Then, go here:
C:\Program Files\Microsoft Visual Studio
.NET\FrameworkSDK\Samples\StartSamples.htm
In my case, this page is in Program Files\VS.NET because I use Visual
Studio. If I am not mistaken, this file end up under
C:\WindowsDir\Microsoft.NET\Framework
If not, simply search for StartSamples.htm on your machine.
This page describes how to set up the sample AND the database you need for
the samples.
HtH
Imar
At 11:36 PM 8/30/2002 +0000, you wrote:
>Well, after a month or so off from ASP.NET, I'm back with a new computer,
>a new install of ASP.NET, and the NEW copy of "Beginning ASP.NET 1.0 with
>VB.NET" (the one NOT based on beta code ;o)
>
>So, things are good, except that I *still* can't get the class browser to
>run. I get the following error:
>
>=============================
>
>Compiler Error Message: BC30002: Type 'SortTable' is not defined.
>
>Source Error:
>
>
>
>Line 89:
>Line 90: If CorClasses(x).Namespace = CurrentNameSpace
>And CorClasses(x).IsPublic
>Line 91: Dim props As New SortTable("GetType")
>Line 92: props("GetType") = CorClasses(x).Name
>Line 93: props("Namespace") = CorClasses
>(x).Namespace
>
>=============================
>
>I googled it and it turned up one page, which happens to be on this site:
>http://p2p.wrox.com/archive/aspx_beginners/2001-11/3.asp
>
>It mentions "To execute the quickstart pages you must execute
>the setup up proceedure in the starthere.htm page first. It installs all
>classes automatically in the web server main path."
>
>However, I don't quite follow what that means.
|
|
 |