473,804 Members | 2,296 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

2.0: Anybody Repair The Broken MSDN Code Examples?

Neither MSDN code examples [1] nor [2] will function.

Has anybody figured out how to use the 2.0 classes, methods and properties
to dynamically create HTML in the HTML <head> element?
I've burned through everything I could find using google.

<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee. com
URL http://metromilwaukee.com/
URL http://clintongallagher.metromilwaukee.com/

[1] http://msdn2.microsoft.com/en-us/library/zbtxhd34
[2] http://msdn2.microsoft.com/en-us/library/h2bbdsaw
Nov 19 '05 #1
5 1571
re:
Neither MSDN code examples [1] nor [2] will function.
Code example 1 works. See it working at :
http://asp.net.do/test2/AddStylesheet.aspx
View Source to see the stylesheet link added to the head.

Code example 2 works. See it working at :
http://asp.net.do/test2/Page.Header.aspx
View Source to see the title and body style added to the head.

All I did was copy the example provided, verbatim, Clinton.
Go get some coffee!

;-)

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:uC******** ******@TK2MSFTN GP12.phx.gbl... Neither MSDN code examples [1] nor [2] will function.

Has anybody figured out how to use the 2.0 classes, methods and properties to
dynamically create HTML in the HTML <head> element?
I've burned through everything I could find using google.

<%= Clinton Gallagher

[1] http://msdn2.microsoft.com/en-us/library/zbtxhd34
[2] http://msdn2.microsoft.com/en-us/library/h2bbdsaw

Nov 19 '05 #2
I tried both examples using C# and VB and neither loaded or ran without
error.

Since posting I've got IStyleSheetCS running.

The HtmlLink Class example still would not run when requested by a browser
until I added the System.Web.UI.H tmlControls Namespace. Then the StyleSheet
would not load. So I tried using the example with VS2005 an a code-behind
model which results in the following error...

/ /CS0117: 'System.Web.UI. IPageHeader' does not contain a definition for
'Controls'
Page.Header.Con trols.Add(myHtm lLink);

<%= Clinton Gallagher

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:ew******** ******@TK2MSFTN GP12.phx.gbl...
re:
Neither MSDN code examples [1] nor [2] will function.


Code example 1 works. See it working at :
http://asp.net.do/test2/AddStylesheet.aspx
View Source to see the stylesheet link added to the head.

Code example 2 works. See it working at :
http://asp.net.do/test2/Page.Header.aspx
View Source to see the title and body style added to the head.

All I did was copy the example provided, verbatim, Clinton.
Go get some coffee!

;-)

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:uC******** ******@TK2MSFTN GP12.phx.gbl...
Neither MSDN code examples [1] nor [2] will function.

Has anybody figured out how to use the 2.0 classes, methods and
properties to dynamically create HTML in the HTML <head> element?
I've burned through everything I could find using google.

<%= Clinton Gallagher

[1] http://msdn2.microsoft.com/en-us/library/zbtxhd34
[2] http://msdn2.microsoft.com/en-us/library/h2bbdsaw


Nov 19 '05 #3
re:
I tried using the example with VS2005 an a code-behind model which results in the
following error..
The code in those pages is meant to be used inline.

System.Web.UI.H tmlControls.Htm lHead subclasses System.Web.UI.I PageHeader

http://beta.asp.net/QUICKSTART/util/...ss=IPageHeader


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:up******** ******@TK2MSFTN GP09.phx.gbl...I tried both examples using C# and VB and neither loaded or ran without error.

Since posting I've got IStyleSheetCS running.

The HtmlLink Class example still would not run when requested by a browser until I added
the System.Web.UI.H tmlControls Namespace. Then the StyleSheet would not load. So I tried
using the example with VS2005 an a code-behind model which results in the following
error...

/ /CS0117: 'System.Web.UI. IPageHeader' does not contain a definition for 'Controls'
Page.Header.Con trols.Add(myHtm lLink);

<%= Clinton Gallagher

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:ew******** ******@TK2MSFTN GP12.phx.gbl...
re:
Neither MSDN code examples [1] nor [2] will function.


Code example 1 works. See it working at :
http://asp.net.do/test2/AddStylesheet.aspx
View Source to see the stylesheet link added to the head.

Code example 2 works. See it working at :
http://asp.net.do/test2/Page.Header.aspx
View Source to see the title and body style added to the head.

All I did was copy the example provided, verbatim, Clinton.
Go get some coffee!

;-)

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:uC******** ******@TK2MSFTN GP12.phx.gbl...
Neither MSDN code examples [1] nor [2] will function.

Has anybody figured out how to use the 2.0 classes, methods and properties to
dynamically create HTML in the HTML <head> element?
I've burned through everything I could find using google.

<%= Clinton Gallagher

[1] http://msdn2.microsoft.com/en-us/library/zbtxhd34
[2] http://msdn2.microsoft.com/en-us/library/h2bbdsaw




Nov 19 '05 #4
How could that be? Anyway, I only attempted to move the HtmlLink Class
example to code-behind after the embedded script block model would not
function for me.

And what does your reference to IPageHeader imply?

<%= Clinton Gallagher

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:uJ******** ******@TK2MSFTN GP09.phx.gbl...
re:
I tried using the example with VS2005 an a code-behind model which
results in the
following error..


The code in those pages is meant to be used inline.

System.Web.UI.H tmlControls.Htm lHead subclasses System.Web.UI.I PageHeader

http://beta.asp.net/QUICKSTART/util/...ss=IPageHeader


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:up******** ******@TK2MSFTN GP09.phx.gbl...
I tried both examples using C# and VB and neither loaded or ran without
error.

Since posting I've got IStyleSheetCS running.

The HtmlLink Class example still would not run when requested by a
browser until I added
the System.Web.UI.H tmlControls Namespace. Then the StyleSheet would not
load. So I tried
using the example with VS2005 an a code-behind model which results in the
following
error...

/ /CS0117: 'System.Web.UI. IPageHeader' does not contain a definition for
'Controls'
Page.Header.Con trols.Add(myHtm lLink);

<%= Clinton Gallagher

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:ew******** ******@TK2MSFTN GP12.phx.gbl...
re:
Neither MSDN code examples [1] nor [2] will function.

Code example 1 works. See it working at :
http://asp.net.do/test2/AddStylesheet.aspx
View Source to see the stylesheet link added to the head.

Code example 2 works. See it working at :
http://asp.net.do/test2/Page.Header.aspx
View Source to see the title and body style added to the head.

All I did was copy the example provided, verbatim, Clinton.
Go get some coffee!

;-)

Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
=============== =============== ========
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in
message
news:uC******** ******@TK2MSFTN GP12.phx.gbl...
Neither MSDN code examples [1] nor [2] will function.

Has anybody figured out how to use the 2.0 classes, methods and
properties to
dynamically create HTML in the HTML <head> element?
I've burned through everything I could find using google.

<%= Clinton Gallagher

[1] http://msdn2.microsoft.com/en-us/library/zbtxhd34
[2] http://msdn2.microsoft.com/en-us/library/h2bbdsaw



Nov 19 '05 #5
<snip />

Just to clarify my last reply... I read the Interface documentation and
tried using an instance of an HtmlHead object as follows. The page now loads
but the StyleSheet does not.

Is it correct to say you implied I needed to subclass IPageHeader by using
the System.Web.UI.H tmlControls Namespace and the HtmlHead class in
particular. Is that correctly stated?

Regardless, this code will load the page but will not load StyleSheet.css.

// Define an HtmlLink control.
HtmlLink myHtmlLink = new HtmlLink();
myHtmlLink.Href = "StyleSheet.css ";
myHtmlLink.Attr ibutes.Add("rel ", "stylesheet ");
myHtmlLink.Attr ibutes.Add("typ e", "text/css");

// Add the HtmlLink to the Head section of the page.
// ERROR: 'System.Web.UI. IPageHeader' does not contain a definition for
'Controls'
Page.Header.Con trols.Add(myHtm lLink);

HtmlHead head = new HtmlHead();
head.Controls.A dd(myHtmlLink);

<%= Clinton Gallagher
Nov 19 '05 #6

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

Similar topics

42
2399
by: cody | last post by:
public DateTime Value { get { try { return new DateTime(int.Parse(tbYear.Text), int.Parse(tbMonth.Text), int.Parse(tbDay.Text)); } catch (FormatException)
1
1298
by: CyberLotus | last post by:
Hi, I'm new to OOPS and I need to call an application from BizTalk orchestration. And I can understand that I need to write a COM for that. Can anybody let me know how to write a COM in .NET? Any example wil be very much helpful. TIA CyberLotus
6
6543
by: Edward | last post by:
hi, everyone, I've found many examples of OWC chart, but all are VB version, when I tried to transform it into C#, compiler told me, "cannot find ChartSpace in OWC", while the same class can be found in VB version. All the "import/using" are the same, I'm confused. Can anybody drop some clue for me? Thanks.
4
7975
by: Simon Verona | last post by:
I'm using wia in a vb.net project to capture images from a scanner.. This works fine. However, I want to control the way that images are scanned - ie B+W, Greyscale and resolution etc, but can't work out how to. My code for scanning is below (sorry it's a bit messy - it's been chopped and changed around a lot)... There seems to be very little documentation on WIA, can anybody help me with this ??? Code is :
2
1614
by: Nick | last post by:
We have recently discovered that on our production environment certain aspx files, two to be certain, are displaying a behaviour we understand ought not to be possible under the (ASP).Net Framework. The read/write lock on the session object set by one request is being relinquished to a second request BEFORE the first request has ended. You can imagine the myriad of ugly situations that can arise from simultaneous requests concurrently...
1
3727
by: Rahul | last post by:
Hi Everybody I have some problem in my script. please help me. This is script file. I have one *.inq file. I want run this script in XML files. But this script errors shows . If u want i am attach this script files and inq files. I cant understand this error. Please suggest me. You can talk with my yahoo id b_sahoo1@yahoo.com. Now i am online. Plz....Plz..Plz...
1
1736
by: Thomas Heller | last post by:
What does the repair command in the 2.5a1 msi installer do? Apparently it does not replace changed files, although it seems to replace deleted files. Thomas
25
4685
by: Norman Diamond | last post by:
I think the current version of _vsnwprintf_s is broken, in ordinary Windows. I'm not completely sure yet but it looks like this breakage is worse than previously known Windows CE breakage of StringCchPrintf. For Windows CE breakage of StringCchPrintf, since the %S format died instead of converting ANSI to Unicode, a workaround was to call MultiByteToWideChar and then use the %s format. For ordinary Windows breakage of _vsnwprintf_s,...
3
2211
by: Bizmark | last post by:
Access2003, Windows XP Pro OEM user OS, Windows Sever 2000 server OS. Not-so-recently I inherited 3 Access DB's from another company merging with our own. Our own system works off of SQL server, but mainting these databases is critical to keeping the business running. 1 database in particular has been causing problems. Along the course we have had a few problems with random records corrupting (new and old) and Values within fields...
0
9594
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10599
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10347
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7635
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6863
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5531
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4308
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.