ASPX Website: URL is getting cut by the browser because it seems too long
I dont have the code right now because that was at work but the aspx website was for redirecting to an internal archive website where I can create search parameters for documents. In the end the url was 2000 chars long or something and was always getting cut by the browser (tested with firefox, chrome and Microsoft Edge).
What could I do to bypass that url length limit?
Afaik the code was this:
Please @ me when you answer, thanks.
4 Replies
It's a common issue with GraphQL and they usually bypass it by using
POST
with a body instead
Until the QUERY
method gets standardized, at least
As for how to do that with an ancient .aspx
-based website...? No ideahow would it look like? can you please show me an example
afaik the archive website is dynamic and working with an frame element or something
Uh, with JS you would send a request like
Again, I never worked with aspx
I have no idea how you would do it there
ah alright, thanks
I can write scripts by using
Response.Write(script);
Ill test it tomorrow at work