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. 7 1373
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.
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.
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.
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?
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?
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?
*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.
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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...
|
by: Gomaw Beoyr |
last post by:
Two question about the "partial classes" (in the next wersion of
..NET).
Question 1
==========
Will partial classes (in the next version of...
|
by: pawel.pabich |
last post by:
Hajo,
I would like to have 2 my own partial classes.
For example:
Default.aspx.cs
Default2.aspx.cs
and they both will relate to...
|
by: tammygombez |
last post by:
Hey fellow JavaFX developers,
I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
|
by: tammygombez |
last post by:
Hey everyone!
I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: CD Tom |
last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
| |