quote a column in HTML hyperlink
Here's a part of my code below,
- <p align="middle">
- <a href="<%=y.Map_Link1%>">
- <%=y.Name%>
- </a>
- </p>
- <p align="middle"><%=y.Map%></p>
An example of expected output, two lines for each of the record, both contains hyperlink
XXX school (name ONLY)
XXX school map
Map_Link1 is a column in my form contains all the Google Map addresses for each of the schools. I don't know what to change in order to make the href part to work.
Here's a wrong output I have.