I have a string variable "clientID", with the value of 18 (for example).
I'm trying to include the variable in the .aspx page by including it as such...
<a href="addContact.aspx?clientID=<%=clientID%>">
This of course, doesn't work... I know I can do this by assigning the client ID to a literal control, but I'd rather not have so many literal controls scattered all over my .aspx page... does anyone know exactly what I'm doing wrong here?
I'm trying to include the variable in the .aspx page by including it as such...
<a href="addContact.aspx?clientID=<%=clientID%>">
This of course, doesn't work... I know I can do this by assigning the client ID to a literal control, but I'd rather not have so many literal controls scattered all over my .aspx page... does anyone know exactly what I'm doing wrong here?