i am designing crystal report , for single or less record its working proper ,
means it is displaying proper but at time of
displaying lacs record at a time its showing error
Maximum request length exceeded.
so what i did , i just pasted one line code and its started working fine.
how to paste that code and where .
go into web.config file and search for <system.web>
paste
<httpRuntime maxRequestLength="1000000" />
brfore closing system.web
<system.web>
other code ----------------
---------------------------
<httpRuntime maxRequestLength="1000000" />
</system.web>
i am sure it will work.
About maxRequestLength i think it will related something if we are posting huge data to
server and it cause , so to avoid we provide length='1000000'
The value must be inside the range 0-2097151.
0 comments: