I am using C#.net
I have webpage, this page has a list view of "Reports IDs"
The requested functionality is Report Text should be displayed in a div when a user click on a report id in the list box.
Report Text is HTML format ( quite long around 16,000,000 char)
When I click on Report ID in the list box
I get this error
I added
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
but still getting same error!
How to fix that?