Link to home
Start Free TrialLog in
Avatar of PagodNaUtak
PagodNaUtakFlag for Philippines

asked on

Increase character limit for URL's

Hi!

Is there a way to increase character limit for URL's in ASP.net 3.5 or Moss 2007?
ASP.net 4.0 has maxRequestPathLength, is there an equivalent maxRequestPathLength in ASP.net 3.5?

Please advice.

Regards,

Joseph
Avatar of Kalpesh Chhatrala
Kalpesh Chhatrala
Flag of India image

You can set maximum request length in web.config

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="32768" />
    </system.web>
</configuration>

Open in new window

Avatar of PagodNaUtak

ASKER

My scenario is related to this posts:

http://stackoverflow.com/questions/265251/asp-net-url-max-path-limit

How to implement the solution in ASP.net 3.5? Any ideas?
You cannot do this,
maxRequestLength
is different thing.
PatelAlpesh,

Can you explain why?
ASKER CERTIFIED SOLUTION
Avatar of ufarooq
ufarooq

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial