473,386 Members | 1,924 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

ASP.NET 2.0 question on Partial Types with J.I.T.

Ok, 3rd or is it the 4th time I have asked this question on Partial Types,
so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in
designing and architecting partial types?



REPOST BELOW
---------------------------------------------------------
I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

These three files must be used together to make file #1, Untitled.aspx, page
work via
J.I.T. when the User first hits Internet Explorer 6.0 on your browser.
MY QUESTION to the Microsoft ASP.NET and C# teams.

I know how file #2,Untitled.aspx.1.cs, is connected and can be found by file
#1, the Untitled.aspx page.
How does file #3, Untitled.aspx.2.cs, get found by the file #1 when I the
first time with Internet Explorer?

IN OTHER WORDS, I am NOT using pre-compile for VS.NET to make these file
compile together.
I would be just using J.I.T. compiling like you do now with src= attribute
in a ASP.NET page.


Jul 21 '05 #1
7 2612
Hmm...first of all, at least with this knowledge I have, even that partial
types are supported now, you can have only one code-beside (partial type)
file associated with a page in ASP.NET v2.0 . From previous description I
assumed you try to have two code-beside files for the Untitled.aspx.

See this thread at ASP.NET Forums:
http://www.asp.net/Forums/ShowPost.a...&PostID=392428

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types,
so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in
designing and architecting partial types?



REPOST BELOW
---------------------------------------------------------
I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

These three files must be used together to make file #1, Untitled.aspx, page work via
J.I.T. when the User first hits Internet Explorer 6.0 on your browser.
MY QUESTION to the Microsoft ASP.NET and C# teams.

I know how file #2,Untitled.aspx.1.cs, is connected and can be found by file #1, the Untitled.aspx page.
How does file #3, Untitled.aspx.2.cs, get found by the file #1 when I the
first time with Internet Explorer?

IN OTHER WORDS, I am NOT using pre-compile for VS.NET to make these file
compile together.
I would be just using J.I.T. compiling like you do now with src= attribute
in a ASP.NET page.

Jul 21 '05 #2
I see confusion in your question. Partial types do not emphasize aspx files,
it's just a consequence. The real meat here is that the defining methods are
allowed to exist elsewhere instead of with the initial type definition -
something I've complained about for a while now. The effect is that code
becomes more readable and easier to deal with.
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?
There's no design issue involved here. At run-time when your type is
instantiated, the CLR will collect the individual pieces and put them
together. Jitting will be no more or less difficult because all these
entities already belong to the same namespace anyway.

I don't see a design issue if your architecture focusses on objects and how
they relate to each other (OOP). A type would not change, it's
implementation would not change. Some of it's methods will not be in the
same source file and others will, but how would that affect the
architecture? Design should not focus on where definitions are at - this is
functional decomposition of sorts. It's not OOP. OOP focuses on how these
objects relate to their environment. Remember, architecture is a very high
level view of how the system is put together. You are unnecessarily mixing
this upper level view with a very low level source code detail.

--
Regards,
Alvin Bruney
Got Tidbits? Get it here
www.networkip.net/tidbits
"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl... Ok, 3rd or is it the 4th time I have asked this question on Partial Types,
so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in
designing and architecting partial types?



REPOST BELOW
---------------------------------------------------------
I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

These three files must be used together to make file #1, Untitled.aspx, page work via
J.I.T. when the User first hits Internet Explorer 6.0 on your browser.
MY QUESTION to the Microsoft ASP.NET and C# teams.

I know how file #2,Untitled.aspx.1.cs, is connected and can be found by file #1, the Untitled.aspx page.
How does file #3, Untitled.aspx.2.cs, get found by the file #1 when I the
first time with Internet Explorer?

IN OTHER WORDS, I am NOT using pre-compile for VS.NET to make these file
compile together.
I would be just using J.I.T. compiling like you do now with src= attribute
in a ASP.NET page.

Jul 21 '05 #3
Careful!

OOP is a four-letter word, as far as nospam is concerned. His caps-lock key
will probably now sporadically engage while he explains how OOP and n-tier
development have failed.

Bob Lehmann

"Alvin Bruney" <va******@hotspammailme.com> wrote in message
news:ug**************@TK2MSFTNGP11.phx.gbl...
I see confusion in your question. Partial types do not emphasize aspx files, it's just a consequence. The real meat here is that the defining methods are allowed to exist elsewhere instead of with the initial type definition -
something I've complained about for a while now. The effect is that code
becomes more readable and easier to deal with.
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by J.I.T.ed when you first bring the page up in IE?


There's no design issue involved here. At run-time when your type is
instantiated, the CLR will collect the individual pieces and put them
together. Jitting will be no more or less difficult because all these
entities already belong to the same namespace anyway.

I don't see a design issue if your architecture focusses on objects and

how they relate to each other (OOP). A type would not change, it's
implementation would not change. Some of it's methods will not be in the
same source file and others will, but how would that affect the
architecture? Design should not focus on where definitions are at - this is functional decomposition of sorts. It's not OOP. OOP focuses on how these
objects relate to their environment. Remember, architecture is a very high
level view of how the system is put together. You are unnecessarily mixing
this upper level view with a very low level source code detail.

--
Regards,
Alvin Bruney
Got Tidbits? Get it here
www.networkip.net/tidbits
"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what

SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in designing and architecting partial types?



REPOST BELOW
---------------------------------------------------------
I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

These three files must be used together to make file #1, Untitled.aspx,

page
work via
J.I.T. when the User first hits Internet Explorer 6.0 on your browser.
MY QUESTION to the Microsoft ASP.NET and C# teams.

I know how file #2,Untitled.aspx.1.cs, is connected and can be found by

file
#1, the Untitled.aspx page.
How does file #3, Untitled.aspx.2.cs, get found by the file #1 when I the first time with Internet Explorer?

IN OTHER WORDS, I am NOT using pre-compile for VS.NET to make these file
compile together.
I would be just using J.I.T. compiling like you do now with src= attribute in a ASP.NET page.


Jul 21 '05 #4
nospam,
Based on a similar question from "curious" in the Whidbey newsgroups

http://communities.microsoft.com/new...idbey&slcid=us

I understand that you cannot use 3 files for partial types in ASP.NET, only
two are supported.

Only reason I remember it was "curious" is the question sounded so very
close to your question, I was thinking "curious" was you, and you were
asking over there, as you are not getting the answer you want over here.

Hope this helps
Jay

"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types,
so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in
designing and architecting partial types?

Jul 21 '05 #5
I was thinking the same thing, Jay...

"Curious" or "nospam"...
Partial types are simply a way to define a class spread out over a couple of
files. One file is analagous to a C source file while the other could be
considered like a C header file that is "#include"-ed from the C source
file. During compilation, the two files merge and you get one type.
--
Eric Newton
C#/ASP Application Developer
http://ensoft-software.com/
er**@cc.ensoft-software.com [remove the first "CC."]
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
nospam,
Based on a similar question from "curious" in the Whidbey newsgroups

http://communities.microsoft.com/new...idbey&slcid=us
I understand that you cannot use 3 files for partial types in ASP.NET, only two are supported.

Only reason I remember it was "curious" is the question sounded so very
close to your question, I was thinking "curious" was you, and you were
asking over there, as you are not getting the answer you want over here.

Hope this helps
Jay

"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what

SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in designing and architecting partial types?


Jul 21 '05 #6
There is no one on those newsgroups anyway....
"Eric Newton" <er**@cc.ensoft-software.com> wrote in message
news:eh**************@TK2MSFTNGP10.phx.gbl...
I was thinking the same thing, Jay...

"Curious" or "nospam"...
Partial types are simply a way to define a class spread out over a couple of files. One file is analagous to a C source file while the other could be
considered like a C header file that is "#include"-ed from the C source
file. During compilation, the two files merge and you get one type.
--
Eric Newton
C#/ASP Application Developer
http://ensoft-software.com/
er**@cc.ensoft-software.com [remove the first "CC."]
"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
nospam,
Based on a similar question from "curious" in the Whidbey newsgroups

http://communities.microsoft.com/new...idbey&slcid=us

I understand that you cannot use 3 files for partial types in ASP.NET,

only
two are supported.

Only reason I remember it was "curious" is the question sounded so very
close to your question, I was thinking "curious" was you, and you were
asking over there, as you are not getting the answer you want over here.

Hope this helps
Jay

"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what

SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very
bottom in designing and architecting partial types?



Jul 21 '05 #7
*Hypothetically*, if you COULD do 2 pages, how would you answer the
questions below...

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by
J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in
designing and architecting partial types?


"Teemu Keiski" <jo****@aspalliance.com> wrote in message
news:O%****************@TK2MSFTNGP11.phx.gbl...
Hmm...first of all, at least with this knowledge I have, even that partial
types are supported now, you can have only one code-beside (partial type)
file associated with a page in ASP.NET v2.0 . From previous description I
assumed you try to have two code-beside files for the Untitled.aspx.

See this thread at ASP.NET Forums:
http://www.asp.net/Forums/ShowPost.a...&PostID=392428

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
"nospam" <n@ntspam.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or
development stages at Microsoft, I am going to ask it differently.
FOUR QUESTIONS:
The background:

I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

QUESTION #1:
How would you design Partial Types for ASP.NET 2.0 web pages and what

SYNTAX
should go in the Page Directive of Untitled.aspx so that is can easily by J.I.T.ed when you first bring the page up in IE?

QUESTION #2
Would you name every file of the partial type in this page directive?

QUESTION #3
Would you name file #2 and #3 above differently?

QUESTION #4
And what difficulties could one expect when starting at the very bottom in designing and architecting partial types?



REPOST BELOW
---------------------------------------------------------
I got three (3) files

(1) Untitled.aspx
(2) Untitled.aspx.1.cs
(3) Untitled.aspx.2.cs

These three files must be used together to make file #1, Untitled.aspx,

page
work via
J.I.T. when the User first hits Internet Explorer 6.0 on your browser.
MY QUESTION to the Microsoft ASP.NET and C# teams.

I know how file #2,Untitled.aspx.1.cs, is connected and can be found by

file
#1, the Untitled.aspx page.
How does file #3, Untitled.aspx.2.cs, get found by the file #1 when I the first time with Internet Explorer?

IN OTHER WORDS, I am NOT using pre-compile for VS.NET to make these file
compile together.
I would be just using J.I.T. compiling like you do now with src= attribute in a ASP.NET page.


Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: nospam | last post by:
I just read on Slash Dot about partial types. Now, is it possible to have a code behind split over two pages but still referencing the same .aspx file??? If so, that would be really nice as...
21
by: nospam | last post by:
Ok, I asked this question before and I also looked at the book "First Look at ASP.NET 2.0" I also read Paul wilson's web page explanation. HOWEVER...... The book and that web page talks about...
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.