Click here to Skip to main content
16,014,637 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: HTML Forms Pin
jerry0davis24-Jul-02 4:12
jerry0davis24-Jul-02 4:12 
GeneralRe: HTML Forms Pin
jerry0davis24-Jul-02 4:21
jerry0davis24-Jul-02 4:21 
GeneralRe: HTML Forms Pin
Paul Watson24-Jul-02 4:59
sitebuilderPaul Watson24-Jul-02 4:59 
GeneralRe: HTML Forms Pin
jerry0davis24-Jul-02 4:35
jerry0davis24-Jul-02 4:35 
GeneralXHTML Strict Pin
Domenic Denicola23-Jul-02 13:47
Domenic Denicola23-Jul-02 13:47 
GeneralRe: XHTML Strict Pin
Colin Leitner24-Jul-02 1:41
Colin Leitner24-Jul-02 1:41 
GeneralRe: XHTML Strict Pin
Paul Watson26-Jul-02 3:29
sitebuilderPaul Watson26-Jul-02 3:29 
GeneralRe: XHTML Strict Pin
Domenic Denicola27-Jul-02 5:11
Domenic Denicola27-Jul-02 5:11 
Paul Watson wrote:
HTML is meant to structure a document. The W3C is moving HTML back to doing that, veering away from the application path that Netscape and IE sent it on.

I guess so. It just made more sense for external links not to take the user away from my site, but I suppose it is important to keep the document structured.

Hehe, you should see how structured I have my documents: they're XML files containing a mix of my own custom elements and XHTML, like so:

<?xml version="1.0" encoding="utf-8"?>
<Page xmlns="/PageWriter/TemplateSchema.xsd" xmlns:XHTML="http://www.w3.org/1999/xhtml">
	<Head>
		<Title>Home Page</Title>
		<Image Width="225">/Images/PageTitles/HomePage.gif</Image>
	</Head>
	<Body>
		<XHTML:p>
			Blah Blah Blah <XHTML:em>Blah!</XHTML:em>
		</XHTML:p>
		<XHTML:p>
			Hers's a link: <Link Href="/Creations/" Status="The Creations"
 Comment="Go to the home page for my Creations, random C++ and C# programs I make in my
 free time which you quite probably will find useful.">random C++ and C#
 programming</Link>. More text. 
		</XHTML:p>
		<Section Name="Sample">
			This section is outputted with a title of "Sample."
		</Section>
		<Spacer Width="10" Height="50" />
		<ASP.NET>Response.Write("Pretty cool, huh?");</ASP.NET>
		
		<News>
			<NewsItem Date="7/23/2002">
				News for 7/23/2002.
			</NewsItem>
			<NewsItem Date="4/17/2002">
				News for 4/17/2002.
			</NewsItem>
		</News>
	</Body>
</Page>


Which gets transformed into a combo of XHTML and ASP.NET code. What do you think? I'm pretty proud of it myself...

Paul Watson wrote:
Guess text/javascript will have to be the indicator. Though this sucks when it comes to IDEs which pop-up intellisense based on the language attribute.

Don't get me started on IDEs... they hate XHTML. I wonder if I could write an addin for VS.NET to make it like XHML and output valid XHTML everywhere? Hmm...

-Domenic Denicola- [CPUA 0x1337]
MadHamster Creations

"I was born human. But this was an accident of fate - a condition merely of time and place. I believe it's something we have the power to change..."

GeneralRe: XHTML Strict Pin
Paul Watson27-Jul-02 5:37
sitebuilderPaul Watson27-Jul-02 5:37 
GeneralRe: XHTML Strict Pin
Domenic Denicola27-Jul-02 8:42
Domenic Denicola27-Jul-02 8:42 
GeneralGo to anchor Pin
Hans Ruck23-Jul-02 7:17
Hans Ruck23-Jul-02 7:17 
GeneralRe: Go to anchor Pin
Jeremy Falcon23-Jul-02 7:38
professionalJeremy Falcon23-Jul-02 7:38 
GeneralRe: Go to anchor Pin
Hans Ruck23-Jul-02 7:52
Hans Ruck23-Jul-02 7:52 
GeneralDataGrid Editing doesn't update Pin
Steve Severance23-Jul-02 5:42
Steve Severance23-Jul-02 5:42 
GeneralRe: DataGrid Editing doesn't update Pin
Not Active23-Jul-02 8:28
mentorNot Active23-Jul-02 8:28 
GeneralRe: DataGrid Editing doesn't update Pin
Steve Severance24-Jul-02 8:23
Steve Severance24-Jul-02 8:23 
GeneralRe: DataGrid Editing doesn't update Pin
mgriffith24-Jul-02 8:33
mgriffith24-Jul-02 8:33 
GeneralCreating a menu list Pin
Gregory22-Jul-02 23:41
Gregory22-Jul-02 23:41 
GeneralRe: Creating a menu list Pin
benjymous23-Jul-02 2:54
benjymous23-Jul-02 2:54 
GeneralRe: Creating a menu list Pin
Nick Parker23-Jul-02 4:27
protectorNick Parker23-Jul-02 4:27 
GeneralRe: Creating a menu list Pin
Suolan23-Jul-02 18:05
Suolan23-Jul-02 18:05 
GeneralDifferent actions from one form. Pin
David Fleming22-Jul-02 11:32
David Fleming22-Jul-02 11:32 
GeneralRe: Different actions from one form. Pin
Jeremy Falcon22-Jul-02 11:44
professionalJeremy Falcon22-Jul-02 11:44 
GeneralRe: Different actions from one form. Pin
David Fleming22-Jul-02 12:24
David Fleming22-Jul-02 12:24 
GeneralRe: Different actions from one form. Pin
Paul Watson23-Jul-02 7:09
sitebuilderPaul Watson23-Jul-02 7:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.