|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
hello,
i validated my xhtmlpage on the w3c validationsite. it says my page is valid but there's a warning concerning the first line of my code. Line 1, column 38 : processing instruction does not start with name. it's about the <? xml encoding="UTF-8" version="1.0" ?> line. does anybody know what's wrong with this? thanx |
|
#2
|
|||
|
|||
|
Actually the processing instruction order for this declaration is not what the parser expects:
the space between <? and xml is invalid and cersion attribute should appear before encoding. It should read |
|
#3
|
|||
|
|||
|
Actually the processing instruction order for this declaration is not what the parser expects:
the space between <? and xml is invalid and version attribute should appear before encoding. It should read <?xml version="1.0" encoding="UTF-8"?> |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Advanced Web Development > <? xml encoding="UTF-8" version="1.0" ?> |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|