
|
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 NOWRAP attribute in my TD tag, Why?
Missing equals sign between attribute and attribute value. Line 245, Position 27
<TD VALIGN="TOP" NOWRAP ALIGN="LEFT">
A:
Every Attribute in XSL must have a name value pair. Change the line from:
<TD VALIGN="TOP" NOWRAP ALIGN="LEFT">
To:
<TD VALIGN="TOP" NOWRAP="" ALIGN="LEFT">
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]
|
|
|
|
|
|
|