If I use the following in my code behind page:
Public Class _Default
Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler
(vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default
Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage first
and make a reference to it.
Do I have to include the code for BaseWebPage with every page that wants to
inherit it?
I've tried a number of things here, but have been unsuccessful.
Thank you,
Todd 6 1427
Todd A wrote: If I use the following in my code behind page:
Public Class _Default Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler (vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage first and make a reference to it. Do I have to include the code for BaseWebPage with every page that wants to inherit it? I've tried a number of things here, but have been unsuccessful.
Are you sure that the name of your class is simply "BaseWebPage"?
usually classes - even your custom coded ones - are somewhere in a
namespace hierarchy.
If you're not sure, run ildasm on the assembly that contains the
BaseWebPage class - it'll show you the namespace (if there is one).
Remember that if you're creating your class using VB.NET the namespace
that it will reside in does not have to come from the source file - the
compiler has a command line option "/rootnamespace" which can specify
one. VS.NET VB projects default the rootnamespace to the name of the
project.
--
mikeb
MIke,
Good point.
I am using a response file, and in the file, I specify my namespace with
/rootnamespace:
Here is a real sample:
/target:Library
/out:"C:\Inetpub\wwwroot\stpaulmoms\bin\_Default.dl l"
/rootnamespace:StPaulMoms
/optimize+
/reference:"System.dll","System.Data.dll","System.D rawing.dll","System.Web.d
ll","System.Xml.dll","System.Design.dll","C:\Inetp ub\wwwroot\stpaulmoms\bin\
DAL.dll","C:\Inetpub\wwwroot\stpaulmoms\bin\StPaul MomsMB.dll"
/Imports:Microsoft.VisualBasic,System,System.Collec tions,System.Configuratio
n,System.Data,System.Drawing,System.Web,System.Web .UI,System.Web.UI.HtmlCont
rols,System.Web.UI.WebControls
/res:"C:\Inetpub\wwwroot\stpaulmoms\StPaulMoms.Defa ult.resources"
"C:\Inetpub\wwwroot\stpaulmoms\Default.aspx.vb "
My goal is to give each web page their own DLL. That's why I'm deviating
from the VS.NET Model of building my assemblies.
If my BaseWebPage class (It is named BaseWebPage), which all my web pages
inherit from, is just a stand alone compiled DLL, how can I compile one
class that inherits from a class inside an already compiled dll?
Thanks,
Todd
"mikeb" <ma************@mailnull.com> wrote in message
news:e5**************@TK2MSFTNGP09.phx.gbl... Todd A wrote: If I use the following in my code behind page:
Public Class _Default Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler (vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage
first and make a reference to it. Do I have to include the code for BaseWebPage with every page that wants
to inherit it? I've tried a number of things here, but have been unsuccessful.
Are you sure that the name of your class is simply "BaseWebPage"? usually classes - even your custom coded ones - are somewhere in a namespace hierarchy.
If you're not sure, run ildasm on the assembly that contains the BaseWebPage class - it'll show you the namespace (if there is one).
Remember that if you're creating your class using VB.NET the namespace that it will reside in does not have to come from the source file - the compiler has a command line option "/rootnamespace" which can specify one. VS.NET VB projects default the rootnamespace to the name of the project.
-- mikeb
Todd A wrote: MIke, Good point. I am using a response file, and in the file, I specify my namespace with /rootnamespace: Here is a real sample:
/target:Library /out:"C:\Inetpub\wwwroot\stpaulmoms\bin\_Default.dl l" /rootnamespace:StPaulMoms /optimize+ /reference:"System.dll","System.Data.dll","System.D rawing.dll","System.Web.d ll","System.Xml.dll","System.Design.dll","C:\Inetp ub\wwwroot\stpaulmoms\bin\ DAL.dll","C:\Inetpub\wwwroot\stpaulmoms\bin\StPaul MomsMB.dll" /Imports:Microsoft.VisualBasic,System,System.Collec tions,System.Configuratio n,System.Data,System.Drawing,System.Web,System.Web .UI,System.Web.UI.HtmlCont rols,System.Web.UI.WebControls /res:"C:\Inetpub\wwwroot\stpaulmoms\StPaulMoms.Defa ult.resources" "C:\Inetpub\wwwroot\stpaulmoms\Default.aspx.vb "
I assume that this is the response file used to compile the codebehind page.
I think what we need to look at is the response file and command line
used to build whatever assembly the BaseWebPage class resides in. I
assume it's either DAL.dll or StPaulMomsMB.dll since those are the only
non-framework assemblies referenced above. My goal is to give each web page their own DLL. That's why I'm deviating from the VS.NET Model of building my assemblies. If my BaseWebPage class (It is named BaseWebPage), which all my web pages inherit from, is just a stand alone compiled DLL, how can I compile one class that inherits from a class inside an already compiled dll?
Thanks, Todd
"mikeb" <ma************@mailnull.com> wrote in message news:e5**************@TK2MSFTNGP09.phx.gbl...
Todd A wrote:
If I use the following in my code behind page:
Public Class _Default Inherits System.Web.UI.Page
The page will compile with no errors from the command line compiler (vbc.exe)
But, If I insert my own base page to inherit from, say,
Public Class _Default Inherits BaseWebPage
I am unable to get the code to compile, even if I compile BaseWebPage first and make a reference to it. Do I have to include the code for BaseWebPage with every page that wants to inherit it? I've tried a number of things here, but have been unsuccessful.
Are you sure that the name of your class is simply "BaseWebPage"? usually classes - even your custom coded ones - are somewhere in a namespace hierarchy.
If you're not sure, run ildasm on the assembly that contains the BaseWebPage class - it'll show you the namespace (if there is one).
Remember that if you're creating your class using VB.NET the namespace that it will reside in does not have to come from the source file - the compiler has a command line option "/rootnamespace" which can specify one. VS.NET VB projects default the rootnamespace to the name of the project.
-- mikeb
--
mikeb
Thanks Mike,
That did the trick.
I've been away from technology for awhile, so this response is late.
Here's one more question if you have time:
What about vb files that are just MODULES and not classes?
Example: abc.dll is an assembly that has nothing but a public module in it.
xyz.dll fails on compilation when code in xyz is referencing code in abc.
Even though I include the reference to abc.dll when I try to compile
xyz.dll, it fails. Is there something special I should know about
compileing modules and referencing them?
Thanks
Todd
Todd A wrote: Thanks Mike, That did the trick.
I've been away from technology for awhile, so this response is late.
Here's one more question if you have time:
What about vb files that are just MODULES and not classes? Example: abc.dll is an assembly that has nothing but a public module in it. xyz.dll fails on compilation when code in xyz is referencing code in abc. Even though I include the reference to abc.dll when I try to compile xyz.dll, it fails. Is there something special I should know about compileing modules and referencing them?
I'm not a VB.NET expert, but as far as I know, VB.NET Modules are simply
a way to provide something like global variables and non-class-based
functions.
Members of a module are accessible within a namespace without specifying
the name of the module - you would still have to import the namespace
containing the module (or specify the namespace explicitly).
So if you have a something like:
namespace NS1
public module ModuleX
sub test( s as string)
Console.WriteLine( "Inside NS1.ModuleX.test")
end sub
end module
end namespace
The test() subroutine can be called using any of the following:
NS1.test( "x")
NS1.ModuleX.test( "x")
test("x") ' only if there's an "imports NS1" statement
Remember that even when compiling assemblies that contain VB.NET
Modules, the Module might be a member of a namespace by virtue of a
compiler option - just like when compiling a class.
Personally, I think that the namespace a type resides in should be
specified in the source code and that it is a mistake for the VB.NET
compiler to have that option. But it does, and your build environment
needs to take it into account.
--
mikeb
Thanks again Mike,
After tinkering a bit with what you suggested, I found that my module wasn't
declared Public. If you don't stipulate either Public or Private, the
module will default to Private. This was causing the problem.
That was the last piece to my puzzle. Thanks again.
-Todd
"mikeb" <ma************@mailnull.com> wrote in message
news:Oe*************@tk2msftngp13.phx.gbl... Todd A wrote:
Thanks Mike, That did the trick.
I've been away from technology for awhile, so this response is late.
Here's one more question if you have time:
What about vb files that are just MODULES and not classes? Example: abc.dll is an assembly that has nothing but a public module in
it. xyz.dll fails on compilation when code in xyz is referencing code in
abc. Even though I include the reference to abc.dll when I try to compile xyz.dll, it fails. Is there something special I should know about compileing modules and referencing them?
I'm not a VB.NET expert, but as far as I know, VB.NET Modules are simply a way to provide something like global variables and non-class-based functions.
Members of a module are accessible within a namespace without specifying the name of the module - you would still have to import the namespace containing the module (or specify the namespace explicitly).
So if you have a something like:
namespace NS1 public module ModuleX sub test( s as string) Console.WriteLine( "Inside NS1.ModuleX.test") end sub end module end namespace
The test() subroutine can be called using any of the following:
NS1.test( "x") NS1.ModuleX.test( "x") test("x") ' only if there's an "imports NS1" statement
Remember that even when compiling assemblies that contain VB.NET Modules, the Module might be a member of a namespace by virtue of a compiler option - just like when compiling a class.
Personally, I think that the namespace a type resides in should be specified in the source code and that it is a mistake for the VB.NET compiler to have that option. But it does, and your build environment needs to take it into account.
-- mikeb This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: aladdin |
last post by:
Hi,
I wonder what's the difference of compilation between using command line and
using VS.NET IDE.
For I have a windows service program, there's always a difference between
the output file...
|
by: rforman1 |
last post by:
I have found many threads with this question asked and ostensibly
answered, but none with an example of how exactly to do it. Help! I
know that in order to set up the values of command line...
|
by: Peter A. Schott |
last post by:
Per subject - I realize I can copy/paste a line at a time into an interactive
session when I'm trying to debug, but was wondering if there is any tool out
there that allows me to copy sections of...
|
by: kendf |
last post by:
Appreciated if someone could tell me how to compile the MS Exception
Management Application Block downloaded from MS Official site?
|
by: Francesco Martinelli |
last post by:
I need to create a multiple file assemby: this requires working directly
with the command line compiler (no IDE support!).
After a few tests I found my problem comes from the issue described below....
|
by: Todd Acheson |
last post by:
TOOLS: Visual Studio.NET 2003
.NET SDK
GOAL: Reproduce the DLL's that our Visual Studio.NET development boxes
create, by using the SDK command line compilers
DILLEMA: RESX Files, how to...
|
by: Plat |
last post by:
Okay, you'll probably think me crazy for asking this. And I am, but also
curious; so please humor me. :)
I'm wondering if there's a way to - using dynamic (server-side) compilation
- include a...
|
by: Enrique Bustamante |
last post by:
Casting arrays that works on watch and command window but not in code.
My application is casting arrays in a way it should work. To test if I
was doing something invalid, I wrote a test code that...
|
by: wxforecaster |
last post by:
As alluded to in my post yesterday, I'm trying to compile a common C utility
in Windows.
It's only reference is to zlib.h, which needs zconf.h and in turn libz.a
On Unix I've compiled this with...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |