How to make a post to page with href url
-
Hi everyone, I have a control who contains a repeater to display some Url whith some parameters below the code of the control
<%# ShowLink(DataBinder.Eval(Container.DataItem, "QuestionId"))%> ["> <%# DataBinder.Eval(Container.DataItem, "Description")%>](SaisiePage.aspx?onglet=2&idchapiter=<%# DataBinder.Eval(Container.DataItem, )
the problem that in href link i must make a POST to the page not a GET. th problem that for style reason i must keep the*
to keep the style in the page. is that possible, is there any trick to do it? thanks you for help! -
Hi everyone, I have a control who contains a repeater to display some Url whith some parameters below the code of the control
<%# ShowLink(DataBinder.Eval(Container.DataItem, "QuestionId"))%> ["> <%# DataBinder.Eval(Container.DataItem, "Description")%>](SaisiePage.aspx?onglet=2&idchapiter=<%# DataBinder.Eval(Container.DataItem, )
the problem that in href link i must make a POST to the page not a GET. th problem that for style reason i must keep the*
to keep the style in the page. is that possible, is there any trick to do it? thanks you for help!You could use xmlhttprequest, the same thing that you use for AJAX stuff.