I´m trying to call asp page from html link but with paremeters. Is that possible?
<li><a href="#" onclick="<% Response.redirect("myurl with parameters")%>">Caducados</a></li>
I know why this fails but is there any way to do this?
I´m trying to call asp page from html link but with paremeters. Is that possible?
<li><a href="#" onclick="<% Response.redirect("myurl with parameters")%>">Caducados</a></li>
I know why this fails but is there any way to do this?
You can pass them in a conventional link;
If you need client side processing
and a js helper;
Here is the answer. Thanks Alex K and My other Me
and then call goTo function from onclick event in html link
I think you are trying to do something like this: