How would I send a hidden input values through HTML post. I would prefer to do this without JavaScript as I don’t know it to well but if that is the only way how would you post it with JavaScript? I could pass the values and get them with QueryString but I prefer not to.
Code:
alphaChar = request.Form("alpha")
if alphaChar <>"" then
Response.Write alphaChar
response.Write("Test")
end if
<a href="<%=obj_Session.str_FileName%>">#</a>
<% for i = 97 to 122 %> <a href="<%=obj_Content.GetContent("PageName")%>">
<input type="hidden" name="alpha" value="<%=CHR(i)%>">
<%=CHR(i)%></a> <%
next
%>
Found a solution in which i can use post with hyperlinks. I used css to style buttons as hyperlinks and send values through post. Code below.