
|
email this FAQ to a colleague
Q:
When changing my HTML page to an XSL page I get an error from the Internet Explorer 5.0 parser about the BR tag, Why?
End tag 'CENTER' does not match the start tag 'BR'. Line 886, Position 3
A:
Every Tag in XSL must end with a /. Change the line from:
<BR>
To:
<BR/>
will solve the problem.
- Wayne Berry
|
Articles
|
|
Sep 22, 2005 - Implementing Remote Calling Without Using AJAX
|
|
|
Right now the latest buzzword around town is AJAX. AJAX is an acronym for Asynchronous JavaScript and XML and is a method used to implement remote calling. The problem is that AJAX is only implemented in ASP.NET 2.0. This article will show you one way to implement remote calling without using AJAX or the XMLHttpRequest object. The technique outlined can even be used from classic ASP and is sufficient for most remote calling needs.
[Read This Article] [Top]
|
|
|