D
Dave Vanwonterghem
I have following code in my asp .net page :
<table>
<tr><td>
<X:hyperlink href="page(<%=pageID%>)">
</td></tr>
<tr><td>
<a href="emc.asp?pageID=<%=pageID%>">
</td></tr>
</table>
How come that in the first control (X:hyperlink) the value <%=pageID%> is
NOT replaced, while in the second control (the a tag), <%=pageID%> is
replaced by its value.
Jill
<table>
<tr><td>
<X:hyperlink href="page(<%=pageID%>)">
</td></tr>
<tr><td>
<a href="emc.asp?pageID=<%=pageID%>">
</td></tr>
</table>
How come that in the first control (X:hyperlink) the value <%=pageID%> is
NOT replaced, while in the second control (the a tag), <%=pageID%> is
replaced by its value.
Jill