Has anyone seen a tag like this?
-
Hey guys, I am responsible for converting a project from ASP/JSP to ASP.NET. I was looking through the code and I discovered the following line <%=[Name]%> And I cannot find any reference to what such a tag is used for. I am not fluent in web development but I cannot find any documentation relating to <%=[X]%> anywhere. I realize this messageboard is for ASP.NET but I wasn't sure where else to ask this question. Any ideas what this tag will be do? What it is used for?
-
Hey guys, I am responsible for converting a project from ASP/JSP to ASP.NET. I was looking through the code and I discovered the following line <%=[Name]%> And I cannot find any reference to what such a tag is used for. I am not fluent in web development but I cannot find any documentation relating to <%=[X]%> anywhere. I realize this messageboard is for ASP.NET but I wasn't sure where else to ask this question. Any ideas what this tag will be do? What it is used for?
-
Hey guys, I am responsible for converting a project from ASP/JSP to ASP.NET. I was looking through the code and I discovered the following line <%=[Name]%> And I cannot find any reference to what such a tag is used for. I am not fluent in web development but I cannot find any documentation relating to <%=[X]%> anywhere. I realize this messageboard is for ASP.NET but I wasn't sure where else to ask this question. Any ideas what this tag will be do? What it is used for?
It's normally used to put a value in place in the code. Typically, ASP code looked something like this:
<table id="Hello"> <tr><td> <%=Name%> </td></tr> </table>
The code is then interpreted by the ASP interpreter, and the Name is written to the response stream in place.
Deja View - the feeling that you've seen this post before.