<% %> tags

  • Thread starter Thread starter Dave Vanwonterghem
  • Start date Start date
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
 
What is X:hyperlink
is X some user control?
<asp:hyperlink href etc........
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top