
September 5th, 2008, 07:35 PM
| | | <head runat="server">
Why do we need runat="server" on our <headtags? | 
September 5th, 2008, 11:35 PM
| | | Re: <head runat="server">
Scott M. wrote: Quote:
Why do we need runat="server" on our <headtags?
>
| So that the head tag will be parsed into a server control, so that the
server code can access it.
Without the attribute the tag would just be treated like literal text,
and the server code could not easily add tags inside the head tag.
--
Göran Andersson
_____ http://www.guffa.com | 
September 6th, 2008, 05:25 AM
| | | Re: <head runat="server">
Well, I understand what runat="server" means in general, but we haven't
always had that in .NET and the server never had any trouble adding tags to
the head section before. What, specifically, does the head tag need this
for? Why does the server need to be able to access the head tag as a server
object?
"Göran Andersson" <guffa@guffa.comwrote in message
news:ulS$8b6DJHA.1272@TK2MSFTNGP05.phx.gbl... Quote:
Scott M. wrote: Quote: |
>Why do we need runat="server" on our <headtags?
| >
So that the head tag will be parsed into a server control, so that the
server code can access it.
>
Without the attribute the tag would just be treated like literal text, and
the server code could not easily add tags inside the head tag.
>
--
Göran Andersson
_____ http://www.guffa.com | | 
September 6th, 2008, 07:55 PM
| | | Re: <head runat="server">
Scott M. wrote: Quote: |
I'm sorry, but your responses don't seem to reall explain why this is needed
| Well, I tried to explain, but if you choose not to believe me you can
just... well... whatever...
--
Göran Andersson
_____ http://www.guffa.com | 
September 6th, 2008, 08:05 PM
| | | Re: <head runat="server">
It's not about believing you. You just haven't provided an ansswer that
explains anything. You're answer is that it is needed to be able to add
things into the head section and since we've been able to do that since .NET
1.0 (and even classic ASP), I don't see how that can be the case.
You may well be right, but I'm looking for an answer that explains why it is
needed now, since it wasn't before.
"Göran Andersson" <guffa@guffa.comwrote in message
news:eWLjXBFEJHA.612@TK2MSFTNGP06.phx.gbl... Quote:
Scott M. wrote: Quote:
>I'm sorry, but your responses don't seem to reall explain why this is
>needed
| >
Well, I tried to explain, but if you choose not to believe me you can
just... well... whatever...
>
--
Göran Andersson
_____ http://www.guffa.com | | 
September 6th, 2008, 08:55 PM
| | | Re: <head runat="server">
"Scott M." <s-mar@nospam.nospamwrote in message
news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl... Quote:
It's not about believing you. You just haven't provided an ansswer that
explains anything. You're answer is that it is needed to be able to add
things into the head section and since we've been able to do that since
.NET 1.0 (and even classic ASP), I don't see how that can be the case.
>
You may well be right, but I'm looking for an answer that explains why it
is needed now, since it wasn't before.
>
| Can you post a chunk of ASP.NET 1.1 that does what you mean?
Your comment that 'even classic ASP' could do it seems to indicate that
there is a misunderstanding in this thread. Code usually helps clear things
up. (I prefer to speak in VB or C# myself rather English, less likely to be
mis-interpreted ;)
--
Anthony Jones - MVP ASP/ASP.NET | 
September 6th, 2008, 09:05 PM
| | | Re: <head runat="server">
Place this: <%="<meta name='keywords' content='one,two,three' />"% in
between the opening and closing head tags and you get a meta tag. Not to
mention, that since most IDE's have been generating custom meta tags (with
the code generator flagged in the tag) for years, I'm having trouble
understanding why we need runat="server" to get at an area that IDE's have
always been able to get to.
"Anthony Jones" <AnthonyWJones@yadayadayada.comwrote in message
news:%23M01jmFEJHA.5044@TK2MSFTNGP05.phx.gbl... Quote:
"Scott M." <s-mar@nospam.nospamwrote in message
news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl... Quote:
>It's not about believing you. You just haven't provided an ansswer that
>explains anything. You're answer is that it is needed to be able to add
>things into the head section and since we've been able to do that since
>.NET 1.0 (and even classic ASP), I don't see how that can be the case.
>>
>You may well be right, but I'm looking for an answer that explains why it
>is needed now, since it wasn't before.
>>
| >
Can you post a chunk of ASP.NET 1.1 that does what you mean?
>
Your comment that 'even classic ASP' could do it seems to indicate that
there is a misunderstanding in this thread. Code usually helps clear
things up. (I prefer to speak in VB or C# myself rather English, less
likely to be mis-interpreted ;)
>
--
Anthony Jones - MVP ASP/ASP.NET
>
| | 
September 6th, 2008, 10:45 PM
| | | Re: <head runat="server">
Scott M. wrote: Quote:
Place this: <%="<meta name='keywords' content='one,two,three' />"% in
between the opening and closing head tags and you get a meta tag. Not to
mention, that since most IDE's have been generating custom meta tags (with
the code generator flagged in the tag) for years, I'm having trouble
understanding why we need runat="server" to get at an area that IDE's have
always been able to get to.
>
| That's not specifically adding a meta tag in the head tag, that is just
adding a literal string among other literal strings.
If you want to create all the response as string literals, you don't
need any server controls at all.
--
Göran Andersson
_____ http://www.guffa.com | 
September 6th, 2008, 11:15 PM
| | | Re: <head runat="server">
Allow me to jump in here with my 2 cents..
Starting .NET 2.0 @Page directive has a Title property (Page class has a
Title property).
Try to set it with out having <head runat=server>... You will get an error..
Also read documentation on Page.Title
"Use the Title property to set the page title in the HTML header sent to the
requesting browser.
Note The page must contain a <headelement with the attribute
runat="server", otherwise the title will not render."
PS: If you are not using Title property in your project then you (probably)
do not need to have <head runat=server>
George.
"Scott M." <s-mar@nospam.nospamwrote in message
news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl... Quote:
It's not about believing you. You just haven't provided an ansswer that
explains anything. You're answer is that it is needed to be able to add
things into the head section and since we've been able to do that since
.NET 1.0 (and even classic ASP), I don't see how that can be the case.
>
You may well be right, but I'm looking for an answer that explains why it
is needed now, since it wasn't before.
>
>
"Göran Andersson" <guffa@guffa.comwrote in message
news:eWLjXBFEJHA.612@TK2MSFTNGP06.phx.gbl... Quote:
>Scott M. wrote: Quote:
>>I'm sorry, but your responses don't seem to reall explain why this is
>>needed
| >>
>Well, I tried to explain, but if you choose not to believe me you can
>just... well... whatever...
>>
>--
>Göran Andersson
>_____
>http://www.guffa.com | >
>
| | 
September 6th, 2008, 11:45 PM
| | | Re: <head runat="server">
You miss my point. Call it what you want, but I am able to gain access to
the content that will be rendered in the head section without
runat="server". So, my question still stands: What does runat="server" in
the head tag buy me that I didn't have before it?
"Göran Andersson" <guffa@guffa.comwrote in message
news:%23NwAqiGEJHA.1272@TK2MSFTNGP05.phx.gbl... Quote:
Scott M. wrote: Quote:
>Place this: <%="<meta name='keywords' content='one,two,three' />"%>
>in between the opening and closing head tags and you get a meta tag. Not
>to mention, that since most IDE's have been generating custom meta tags
>(with the code generator flagged in the tag) for years, I'm having
>trouble understanding why we need runat="server" to get at an area that
>IDE's have always been able to get to.
>>
| >
That's not specifically adding a meta tag in the head tag, that is just
adding a literal string among other literal strings.
>
If you want to create all the response as string literals, you don't need
any server controls at all.
>
--
Göran Andersson
_____ http://www.guffa.com | | 
September 6th, 2008, 11:55 PM
| | | Re: <head runat="server">
So is the ability to use the @Page Title directive the only thing that
adding runat="server" to the head tag buys me?
"George" <noemail@comcast.netwrote in message
news:OlW0u1GEJHA.768@TK2MSFTNGP05.phx.gbl... Quote:
Allow me to jump in here with my 2 cents..
>
Starting .NET 2.0 @Page directive has a Title property (Page class has a
Title property).
>
Try to set it with out having <head runat=server>... You will get an
error.. Also read documentation on Page.Title
"Use the Title property to set the page title in the HTML header sent to
the requesting browser.
Note The page must contain a <headelement with the attribute
runat="server", otherwise the title will not render."
>
PS: If you are not using Title property in your project then you
(probably) do not need to have <head runat=server>
>
George.
>
>
>
>
>
>
"Scott M." <s-mar@nospam.nospamwrote in message
news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl... Quote:
>It's not about believing you. You just haven't provided an ansswer that
>explains anything. You're answer is that it is needed to be able to add
>things into the head section and since we've been able to do that since
>.NET 1.0 (and even classic ASP), I don't see how that can be the case.
>>
>You may well be right, but I'm looking for an answer that explains why it
>is needed now, since it wasn't before.
>>
>>
>"Göran Andersson" <guffa@guffa.comwrote in message
>news:eWLjXBFEJHA.612@TK2MSFTNGP06.phx.gbl... Quote:
>>Scott M. wrote:
>>>I'm sorry, but your responses don't seem to reall explain why this is
>>>needed
>>>
>>Well, I tried to explain, but if you choose not to believe me you can
>>just... well... whatever...
>>>
>>--
>>Göran Andersson
>>_____
>>http://www.guffa.com | >>
>>
| >
| | 
September 7th, 2008, 12:25 AM
| | | Re: <head runat="server">
YES and again if you are no using it then you do not need <head
runat=server>.
The Title property makes sense when used in conjunction with MasterPages.
When <HEADtag is in the MasterPage and each page needs to set custom Title
(Good for Google/Yahoo). So that was a Microsoft's way to let developers do
it (set custom title on page).
George.
"Scott M." <s-mar@nospam.nospamwrote in message
news:%23aLfzIHEJHA.1596@TK2MSFTNGP03.phx.gbl... Quote:
So is the ability to use the @Page Title directive the only thing that
adding runat="server" to the head tag buys me?
>
>
"George" <noemail@comcast.netwrote in message
news:OlW0u1GEJHA.768@TK2MSFTNGP05.phx.gbl... Quote:
>Allow me to jump in here with my 2 cents..
>>
>Starting .NET 2.0 @Page directive has a Title property (Page class has a
>Title property).
>>
>Try to set it with out having <head runat=server>... You will get an
>error.. Also read documentation on Page.Title
>"Use the Title property to set the page title in the HTML header sent to
>the requesting browser.
>Note The page must contain a <headelement with the attribute
>runat="server", otherwise the title will not render."
>>
>PS: If you are not using Title property in your project then you
>(probably) do not need to have <head runat=server>
>>
>George.
>>
>>
>>
>>
>>
>>
>"Scott M." <s-mar@nospam.nospamwrote in message
>news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl... Quote:
>>It's not about believing you. You just haven't provided an ansswer that
>>explains anything. You're answer is that it is needed to be able to add
>>things into the head section and since we've been able to do that since
>>.NET 1.0 (and even classic ASP), I don't see how that can be the case.
>>>
>>You may well be right, but I'm looking for an answer that explains why
>>it is needed now, since it wasn't before.
>>>
>>>
>>"Göran Andersson" <guffa@guffa.comwrote in message
>>news:eWLjXBFEJHA.612@TK2MSFTNGP06.phx.gbl...
>>>Scott M. wrote:
>>>>I'm sorry, but your responses don't seem to reall explain why this is
>>>>needed
>>>>
>>>Well, I tried to explain, but if you choose not to believe me you can
>>>just... well... whatever...
>>>>
>>>--
>>>Göran Andersson
>>>_____
>>>http://www.guffa.com
>>>
>>>
| >>
| >
>
| | 
September 7th, 2008, 12:55 AM
| | | Re: <head runat="server">
Thank you very much!
"George" <noemail@comcast.netwrote in message
news:OSD%23caHEJHA.5044@TK2MSFTNGP05.phx.gbl... Quote:
YES and again if you are no using it then you do not need <head
runat=server>.
The Title property makes sense when used in conjunction with MasterPages.
When <HEADtag is in the MasterPage and each page needs to set custom
Title (Good for Google/Yahoo). So that was a Microsoft's way to let
developers do it (set custom title on page).
>
>
George.
>
>
>
"Scott M." <s-mar@nospam.nospamwrote in message
news:%23aLfzIHEJHA.1596@TK2MSFTNGP03.phx.gbl... Quote:
>So is the ability to use the @Page Title directive the only thing that
>adding runat="server" to the head tag buys me?
>>
>>
>"George" <noemail@comcast.netwrote in message
>news:OlW0u1GEJHA.768@TK2MSFTNGP05.phx.gbl... Quote:
>>Allow me to jump in here with my 2 cents..
>>>
>>Starting .NET 2.0 @Page directive has a Title property (Page class has a
>>Title property).
>>>
>>Try to set it with out having <head runat=server>... You will get an
>>error.. Also read documentation on Page.Title
>>"Use the Title property to set the page title in the HTML header sent to
>>the requesting browser.
>>Note The page must contain a <headelement with the attribute
>>runat="server", otherwise the title will not render."
>>>
>>PS: If you are not using Title property in your project then you
>>(probably) do not need to have <head runat=server>
>>>
>>George.
>>>
>>>
>>>
>>>
>>>
>>>
>>"Scott M." <s-mar@nospam.nospamwrote in message
>>news:uZ6bKLFEJHA.4720@TK2MSFTNGP02.phx.gbl...
>>>It's not about believing you. You just haven't provided an ansswer that
>>>explains anything. You're answer is that it is needed to be able to
>>>add things into the head section and since we've been able to do that
>>>since .NET 1.0 (and even classic ASP), I don't see how that can be the
>>>case.
>>>>
>>>You may well be right, but I'm looking for an answer that explains why
>>>it is needed now, since it wasn't before.
>>>>
>>>>
>>>"Göran Andersson" <guffa@guffa.comwrote in message
>>>news:eWLjXBFEJHA.612@TK2MSFTNGP06.phx.gbl...
>>>>Scott M. wrote:
>>>>>I'm sorry, but your responses don't seem to reall explain why this is
>>>>>needed
>>>>>
>>>>Well, I tried to explain, but if you choose not to believe me you can
>>>>just... well... whatever...
>>>>>
>>>>--
>>>>Göran Andersson
>>>>_____
>>>>http://www.guffa.com
>>>>
>>>>
>>>
| >>
>>
| >
| | 
September 7th, 2008, 02:05 PM
| | | Re: <head runat="server">
Scott M. wrote: Quote:
You miss my point. Call it what you want, but I am able to gain access to
the content that will be rendered in the head section without
runat="server". So, my question still stands: What does runat="server" in
the head tag buy me that I didn't have before it?
| No, it's you who are missing the point.
You can add content in the actual head, not just in a container that you
have placed in the head.
This is required to use any built in features, like themes, that need to
put code in the head.
If you get an error message that tells you that runat="server" is
required in the head tag, it's because you are using some of the built
in fetures that needs to put code in the head. The error message also
tells you exactly what it is that you are using, so if you don't want to
use that featue, you don't net to put runat="server" in the head tag.
--
Göran Andersson
_____ http://www.guffa.com | 
September 7th, 2008, 07:15 PM
| | | Re: <head runat="server">
No, it's you who are missing the point.
I am quite sure that I am and I'm quite sure that you aren't explaining it
in a way that makes me get the point.
All you are saying is that it is requires so that content can be placed in
the head secation and I'm telling you that this can be done without
runat="server".
Anyway, thanks for trying. | 
September 7th, 2008, 08:05 PM
| | | Re: <head runat="server">
Scott M. wrote: Quote: Quote: |
>No, it's you who are missing the point.
| >
I am quite sure that I am and I'm quite sure that you aren't explaining it
in a way that makes me get the point.
>
All you are saying is that it is requires so that content can be placed in
the head secation and I'm telling you that this can be done without
runat="server".
| Yes, of course it's possible, but far from practical.
The way that you demonstated is to put a server control or an inline
code block inside the head tag, but that requires you to know where the
head tag is already. That can't be done automatically.
Another alternative is to loop through all the literal controls in the
page to locate the head tag. Then the string containing the head tag
could be parsed so that the string could be modified. Although possible,
it would be doing exactly what's done when you put runat="server" in the
head tag, only over and over again every time the header needed
modifying. The mechanism for parsing the code already exists, there is
no reason to do it in a different way for the head tag. Quote:
>
Anyway, thanks for trying.
>
| --
Göran Andersson
_____ http://www.guffa.com | 
September 7th, 2008, 09:35 PM
| | | Re: <head runat="server">
The way that you demonstated is to put a server control or an inline code Quote:
block inside the head tag, but that requires you to know where the head
tag is already. That can't be done automatically.
| [sigh] Yes it can, it's been done for years by every HTML editor that wanted
to insert a <meta name="Generator" ...tag into the output. | 
September 8th, 2008, 12:45 AM
| | | Re: <head runat="server">
Scott M. wrote: Quote: Quote:
>The way that you demonstated is to put a server control or an inline code
>block inside the head tag, but that requires you to know where the head
>tag is already. That can't be done automatically.
| >
[sigh] Yes it can, it's been done for years by every HTML editor that wanted
to insert a <meta name="Generator" ...tag into the output.
>
| [sigh] Yes, as I said, it's possible. It can be done, but it would be
stupid. It doesn't make sense to parse the code one extra time to find
the head tag, when the code has already been parsed once.
--
Göran Andersson
_____ http://www.guffa.com | 
September 8th, 2008, 01:45 AM
| | | Re: <head runat="server">
So, your final response is that having this runat="server" in the head tag
gives me no more functionality that we've already had.
Gee, you could have said that like 12 posts ago.
"Göran Andersson" <guffa@guffa.comwrote in message
news:eFCr8IUEJHA.4092@TK2MSFTNGP06.phx.gbl... Quote:
Scott M. wrote: Quote: Quote:
>>The way that you demonstated is to put a server control or an inline
>>code block inside the head tag, but that requires you to know where the
>>head tag is already. That can't be done automatically.
| >>
>[sigh] Yes it can, it's been done for years by every HTML editor that
>wanted to insert a <meta name="Generator" ...tag into the output.
| >
[sigh] Yes, as I said, it's possible. It can be done, but it would be
stupid. It doesn't make sense to parse the code one extra time to find the
head tag, when the code has already been parsed once.
>
--
Göran Andersson
_____ http://www.guffa.com | | 
September 8th, 2008, 08:25 AM
| | | Re: <head runat="server">
Scott M. wrote: Quote:
So, your final response is that having this runat="server" in the head tag
gives me no more functionality that we've already had.
>
Gee, you could have said that like 12 posts ago.
>
| I did.
--
Göran Andersson
_____ http://www.guffa.com |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | | | | What is Bytes?
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over network members.
|