|
|
From the W3c:
(note that this is not the case with XHTML).
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Exactly, but it still gives an error. As you said, a problem with the validator. I started writing XHTML today; are there any better validators?
Thomas
modified 29-Aug-18 21:01pm.
|
|
|
|
|
Not that I have come across. The best way to write Valid Xhtml is to take full advantage of layout. Be VERY strict about tabs and things like that. Pretend you are writing XML (Which you essentially are). Dreamweaver has a reasonably good tool, but I would not rely on it.
Another good posibility are the many firefox addons. These are free and often quite good.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
The w3c doesn't know what it is doing.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
You're trying to validate a HTML 4 document. For XHTML start with:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Try validating after this change.
|
|
|
|
|
Thank you
modified 29-Aug-18 21:01pm.
|
|
|
|
|
|
There is a MySQL ADO.NET library available on the MySQL site, with that you won't need ODBC at all.
Find it here
|
|
|
|
|
Hi!
i have to play videos in my aspx pages but i cant find any control for that. So, is there any control to be downloaded in my application to play videos. In html i know how to use media player control but i need to code in C#.
thanx
|
|
|
|
|
You can ask this question as often as you like. The answer will not change. Your C# code runs on your server. The client will just run the HTML and javascript. The best you can do, is create HTML that does what you want, via a C# control. You will almost certainly do this using the media player control.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
u just leave this questions its out of ur undersatnding
|
|
|
|
|
I don't know whether to laugh or cry?!
You don't need to do it in C#, an aspx page can contain as much HTML as you like. If you already know how to do it that way use it!
|
|
|
|
|
coz we have done it just before a while
|
|
|
|
|
ROTFL - that's brilliant.
You *can* run C# on the client, if you create controls and embedd them in the page. It just opens security hassles, and would be stupid to do for something as simple as a media player.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Hey,
What do you know about C#, ASP.NET and web development in general to have the guts to answer this guy?
Thomas
modified 29-Aug-18 21:01pm.
|
|
|
|
|
Not a thing, apparently..... :P
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Hi!
I have to implement CSS in my C# asp.net web application.
I made a Css class and used it in my aspx form. But formatting is applied only on backgroud of the form. formatting on the web controls like buttons and labels is not applied. Can anyone guide me to solve this problem.
Thanx
|
|
|
|
|
Please don't just keep asking the same questions. What are you hoping for, if you're not going to post the code in question, and you don't respond when people answer you ?
Your CSS is obviously broken. ASP.NET and C# have nothing to do with it. Post some code, so people can help you.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Thanx alot we have done it ourself
|
|
|
|
|
Hi,
This is Ashok Varma V. S. working with Cibernet, India.
I found you the right person to answer my question.
I have XSD, XML files and want to validate the XML against the XSD and then only proceed with parsing the XML file.
I used XML::SAX::ParserFactory, XML::Validator::Schema modules but following is the issues i faced ...
1. Failed with this reason --- elementFormDefault in <schema> must be 'unqualified', 'qualified' is not supported.
I modified the attribute 'elementFormDefault' value to 'unqualified' and it worked (practically, i should not do this).
2. The module that i am currently using(give below in code snippet) is not supporting <import> tag.
Can any one please suggest me a better module which does the above.
code snippet i used
------------------
use XML::SAX::ParserFactory;
use XML::Validator::Schema;
my $xsd_file = '/Users/vashokvarma/EID/xmlfile/EID.xsd';
my $xml_file = '/Users/vashokvarma/EID/xmlfile/EID.xml';
my $validator = XML::Validator::Schema->new(file => $xsd_file);
my $parser = XML::SAX::ParserFactory->parser(Handler => $validator);
eval { $parser->parse_uri($xml_file) };
if ($@) {
print "File failed validation: $@"
} else {
print "proceed with parsing XML\n";
}
------------------
Let me know if anyone need any additional information. Any kind of help is greatly appreciated.
Thanks in advance,
Ashok
Do what i do but dont do what i say ...
|
|
|
|
|
The technology i am using is CGI-Perl.
Do what i do but dont do what i say ...
|
|
|
|
|
Has anyone done much development using Iframes?
Is there any good resources aroung for Iframes?
Has anyone done any Iframe development using sharepoint?
Thanks,
macca
|
|
|
|
|
macca24 wrote: Has anyone done much development using Iframes?
Yes
macca24 wrote: Is there any good resources aroung for Iframes?
What do you mean? IFrames are just Frames for the most part so any DHTML/Javascript resources for Frames will mostly apply.
macca24 wrote: Has anyone done any Iframe development using sharepoint?
I have not done any Sharepoint anything. However the more you framework you use the less control and flexability you have.
led mike
|
|
|
|
|
Is there a way to do the following on a PHP web page hosted on an Apache server?
1) Limit the number of users that can download a given file at any given time
2) Throttle the download speed so that even though the same bandwidth is used on a download, coupled with a concurrent user limit (described above) it would effectively reduce the bandwidth per day.
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997 ----- "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001
|
|
|
|