Click here to Skip to main content
15,927,694 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Winword.exe is run by Network Service Pin
Christian Graus21-Dec-08 16:28
protectorChristian Graus21-Dec-08 16:28 
GeneralRe: Winword.exe is run by Network Service Pin
Ali Ghazaei22-Dec-08 1:24
Ali Ghazaei22-Dec-08 1:24 
QuestionHandling maxRequestLength errors in IIS6 Pin
Radoslav Bielik21-Dec-08 10:35
Radoslav Bielik21-Dec-08 10:35 
AnswerRe: Handling maxRequestLength errors in IIS6 Pin
Abhijit Jana21-Dec-08 17:19
professionalAbhijit Jana21-Dec-08 17:19 
GeneralRe: Handling maxRequestLength errors in IIS6 Pin
Radoslav Bielik21-Dec-08 21:23
Radoslav Bielik21-Dec-08 21:23 
AnswerRe: Handling maxRequestLength errors in IIS6 Pin
Rajdev Ramasamy5-Jan-09 17:38
Rajdev Ramasamy5-Jan-09 17:38 
GeneralRe: Handling maxRequestLength errors in IIS6 Pin
Radoslav Bielik5-Jan-09 23:00
Radoslav Bielik5-Jan-09 23:00 
AnswerRe: Handling maxRequestLength errors in IIS6 Pin
Rajdev Ramasamy5-Jan-09 23:18
Rajdev Ramasamy5-Jan-09 23:18 
Hi,

We have faced a similar issue and resolved it. Please find the instructions we followed to resolve. We have limited the upload size to 10MB and we are showing friendly message if the size exceeds. Please revert back if you still have the issue.Thanks.

Root Cause of the Issue

· IIS6 uses a new metabase property called UploadReadAheadSize when passing data to an ISAPI extension. This property is used to determine the maximum buffer size for the incoming request. The default size for this buffer is 48k

· If UploadReadAheadSize is smaller than the content length, an HTTP 413error is returned, and the connection is closed to prevent deadlock. This causes the “Page cannot be displayed” error in IE

Solution

· Change the value of UploadReadAheadSize to a value larger than the content length

· The following example shows how to set the value for UploadReadAheadSize to 200KB on the Web server

cscript adsutil.vbs set w3svc/1/uploadreadaheadsize 200

Source

http://technet.microsoft.com/en-us/library/cc737382.aspx

http://blogs.msdn.com/jiruss/archive/2007/04/13/http-413-request-entity-too-large-can-t-upload-large-files-using-iis6.aspx


Thanks,
Rajdev
Questionhow to remove time in gridview & details view when te data is bind through code Pin
avinash8621-Dec-08 7:29
avinash8621-Dec-08 7:29 
AnswerRe: how to remove time in gridview & details view when te data is bind through code Pin
Christian Graus21-Dec-08 8:57
protectorChristian Graus21-Dec-08 8:57 
AnswerRe: how to remove time in gridview & details view when te data is bind through code Pin
Abhijit Jana21-Dec-08 17:47
professionalAbhijit Jana21-Dec-08 17:47 
QuestionSending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 1:04
Rameez Raja21-Dec-08 1:04 
AnswerRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 1:12
professionalAbhijit Jana21-Dec-08 1:12 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 1:33
Rameez Raja21-Dec-08 1:33 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 2:00
professionalAbhijit Jana21-Dec-08 2:00 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 2:13
Rameez Raja21-Dec-08 2:13 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Not Active21-Dec-08 2:51
mentorNot Active21-Dec-08 2:51 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 17:21
professionalAbhijit Jana21-Dec-08 17:21 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 18:04
Rameez Raja21-Dec-08 18:04 
AnswerRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 19:00
professionalAbhijit Jana21-Dec-08 19:00 
AnswerRe: Sending email from asp.net page User never receive sended email Pin
Parwej Ahamad21-Dec-08 5:37
professionalParwej Ahamad21-Dec-08 5:37 
QuestionDeployment Troubles Pin
Muhammad Gouda21-Dec-08 0:04
Muhammad Gouda21-Dec-08 0:04 
AnswerRe: Deployment Troubles Pin
Abhijit Jana21-Dec-08 1:26
professionalAbhijit Jana21-Dec-08 1:26 
QuestionHow can I make Help file for my web application in ASP.NET n C#? Pin
Ravi Munde20-Dec-08 22:31
Ravi Munde20-Dec-08 22:31 
AnswerRe: How can I make Help file for my web application in ASP.NET n C#? Pin
Christian Graus20-Dec-08 22:55
protectorChristian Graus20-Dec-08 22:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.