This is what I'm trying to implement:
<form id="form1" runat="server" action="<%= AllowedURL() %>">
The other variable is without =
<form id="form1" runat="server" action="<% AllowedURL() %>">
But both throws a 400 Bad Request.
In the url of the page I see this:
example.com/<%=%20AllowedURL()%20%>
Is there something to modify? Thanks in advance
<%# ... %>