A solution to "An unexpected error has occurred" in WSS v3

Search

Accessible SharePoint WebSites
Download ARF

A solution to "An unexpected error has occurred" in WSS v3

http://blog.thekid.me.uk

Debugging SharePoint can be problematic at times, it does like to hide debugging information from you. The bain of my life recently has been “An unexpected error has occurred” with nothing written to log files, trace or the event log.

Normally I can debug the problem with a little commenting & narrowing down of the problem, but today I have managed to get rid of that error screen completely.

The solution is to change a single entry in web.config, by modifying the line…

<SafeMode MaxControls=“200“ CallStack=“false“…

to…

<SafeMode MaxControls=“200“ CallStack=“true“…

You will also need to set custom errors to 'Off' .

<customErrors mode=“Off“/>

You will no longer see the “An unexpected error has occurred” error page and instead you get a lovely ’standard ASP.Net error page’ with the stack trace and everything…development has got that little bit easier!!

Further SharePoint debuging tips are availble here.

Posted by Vincent Rothwell on Thursday, 15 Feb 2007 09:05  - 167 Comments
Orininally printed from http://thekid.me.uk - Copyright Vincent Rothwell 2007
 

Comments

Sunday, 27 Jul 2008 10:36 by DT
You the Man! Good One!

Sunday, 27 Jul 2008 10:36 by Ashwani Kumar Ajmera
i am doing this edit web.config file but can not solution Please again send some solution and send my email. "Debugging SharePoint can be problematic at times, it does like to hide debugging information from you. The bain of my life recently has been “An unexpected error has occurred” with nothing written to log files, trace or the event log. Normally I can debug the problem with a little commenting & narrowing down of the problem, but today I have managed to get rid of that error screen completely. The solution is to change a single entry in web.config, by modifying the line… <SafeMode MaxControls=“200“ CallStack=“false“… to… <SafeMode MaxControls=“200“ CallStack=“true“… You will also need to set custom errors to 'Off' . <customErrors mode=“Off“/> You will no longer see the “An unexpected error has occurred” error page and instead you get a lovely ’standard ASP.Net error page’ with the stack trace and everything…development has got that little bit easier!!"

Sunday, 27 Jul 2008 10:36 by Archana
Thanks for this tip

Sunday, 27 Jul 2008 10:36 by PrashanthSpark
Thanks for this info...

Sunday, 27 Jul 2008 10:36 by Lisa
You rock! This will save our development team so much time and aggrivation...we were about going crazy from the "unexpected error" message! Thanks!

Sunday, 27 Jul 2008 10:36 by Garry
Two quick edits in the config file and i can now debug the problem, How do you know these things??? But most of all thanks for posting this, saved me a lot of time.

Sunday, 27 Jul 2008 10:36 by Garry
Two quick edits in the config file and i can now debug the problem, How do you know these things??? But most of all thanks for posting this, saved me a lot of time.

Sunday, 27 Jul 2008 10:36 by Josh
I just did some drilling into this problem and found a solution. After you have enabled the detailed error reporting, you will see a new error when you click on "My Tasks" similar to "StatusingDataAccess.GetDataForTask could not find pre-cached data. Attempted to load Guid - 9eb1c3c5-59ee-41fb-8b84-d386b89dd0f7". What I did was perform a manual search on the Database table for a Task that has a GUID equal to the GUID reported on the error screen. I performed this query on the dbo.MSP_TASKS table: SELECT * FROM dbo.MSP_TASKS WHERE TASK_UID='7e514b0c-cd40-4663-b6e5-2454f1668289'; The query returned 1 result for the task that has the error. I removed the user from the resources for that task, and then the user was able to open "My Tasks" again.

Sunday, 27 Jul 2008 10:36 by Kranthi
You are Great...You saved my time.

Sunday, 27 Jul 2008 10:36 by Joe
Thanks for the post, this was a huge help.

Sunday, 27 Jul 2008 10:36 by Haroon
Thanx a lot mate! You are my saviour.

Sunday, 27 Jul 2008 10:36 by Irshaad
Thanks man! No to figure out "Extender controls may not be registered before PreRender."

Sunday, 27 Jul 2008 10:36 by Garth
Thanks for this!

Sunday, 27 Jul 2008 10:36 by ganesh
Hi Iam getting a error "copying to the destination did not completed successfully" when i send a document to record center. Does it requires any customisation in officialfile.aspx.... Iam really confused.... Can any one help me Thanks Ganesh

Sunday, 27 Jul 2008 10:36 by Johann Schtutz
Awesome find. The error reporting (lack of) in SharePoint was driving me nuts until now. Thanks again.

Sunday, 27 Jul 2008 10:36 by Kumar
Hi you saved my day, thanks

Sunday, 27 Jul 2008 10:36 by Nishim Attreja
Thanks sir.. this is great help for me to get the exact issue.

Sunday, 27 Jul 2008 10:36 by Eddie V
Hello, I believe i edited the wrong web.config file. And now i get a runtime error when accessing my portal. I changed back the settings and still get error. Do you know how i can resolve this. Here is the error Server Error in '/' Application. -------------------------------------------------------------------------------- Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>

Sunday, 27 Jul 2008 10:36 by Gerry
Thanks for this wonderful tip! My life will be a lot easier from now on :).

Sunday, 27 Jul 2008 10:36 by Ralph
A precious hint indeed! I've got 5 MOSS 2007 development books - but none of them contains such crucial tips like this one... Thanks a lot

Sunday, 27 Jul 2008 10:36 by PrashanthSpark
I had used SmartPart (return version 1.3) in my WSS 3.0 iam able to install properly & add my UC , when i need to modify I clicked on Modify > Webpart shows error : An unexpected error has occurred” error page Webpart Manintance page :if you have permission , you can use this page

Sunday, 27 Jul 2008 10:36 by Vijay
Very helpfull tip

Sunday, 27 Jul 2008 10:37 by mnd
This is really great help. thanks

Sunday, 27 Jul 2008 10:37 by Marcello Ramos
Hi Vincent Rothwell, You are the best. Thanks for your help. As a IT guys we need learn how to provide that kind of info to improve the business. Marcello Ramos Brazil

Sunday, 27 Jul 2008 10:37 by Marc
Thanks for this - helps a lot when debugging custom WebParts!

Sunday, 27 Jul 2008 10:37 by Prashanth
Thanks a lot for the wonderful tip !!!

Sunday, 27 Jul 2008 10:37 by Lacroix
many thanks, this is going to save me a lot of time

Sunday, 27 Jul 2008 10:37 by Matt
BIG help. Thanks a lot!

Sunday, 27 Jul 2008 10:37 by Bob - Tallahassee
When I search for web.config, I get a slew of files and quite a few for SharePoint. I found one that had the fields you said needed to be changed, changed them and it did not change anything. Is there a specific web.config file I should be looking for. Thanks.

Sunday, 27 Jul 2008 10:37 by Vince
Bob, Your web.config is in the root of your web application. By default these will be in the C:\Inetpub\wwwroot\wss\VirtualDirectories folder. Generally the name of the folder for your site will be either the machine name with a number or the host header with a number. This can be different if the person who created the web application chose a different folder name. You can also find out the folder from within the IIS manager. HTH

Sunday, 27 Jul 2008 10:37 by Bob
Thanks. WSe now see the code. We have a unique situation here where I installed and set up the application and someone else is adding and modifying sites. Twice now the main site that person is working on has come up with an unexpected error - the first time we killed the site and it was then recreated. This is the second time it has happened, and we want to know what is behind these errors - the activity prior to each was not the same. What we hope to learn is how to fix whatever went wrong without having to rebuild the site. If we cannot discover what caused the fatal error, we will have to kill it again and from this point forward, back up the site after each action is successful so we have a point in time to go back to with a healthy site in place.

Sunday, 27 Jul 2008 10:37 by Wendy
That is stunningly awesome! Thank you so much!

Sunday, 27 Jul 2008 10:37 by Krunal Patel
hi thanks for yr help.. using this method i have solved my problem

Sunday, 27 Jul 2008 10:37 by Prashant Ganesh
This is a great piece of information. It really saves a lot of time of a Sharepoint developer to find where the problem is. I had a similar issue, with one of my webparts (based on something similar to smartpart), i followed the steps and i could see the trace information and figure out the problem was with the path of .ascx user contol file. thanks a lot

Sunday, 27 Jul 2008 10:37 by georgeM
Amazing tip man! I have been skinning Sharepoint portals for some time now, but was never really taught. I've just been learning on my own (doing quite well if I might say so), but I had run into this "Unexpected error" while editing my default.master page. After setting up these debug tips, Sharepoint opened up to me and told me EXACTLY what it was looking for and couldn't find. Two seconds later I fixed the problem. Your site is going in my list of treasured bookmarks for sure. Thanks again!

Sunday, 27 Jul 2008 10:37 by Mahesh Patil
Thank you very much. Very useful inforation, otherwise it is difficult to figureout the exact problem. Thanks Mahesh

Sunday, 27 Jul 2008 10:37 by Jim R
thank you thank you!!! thank you thank you!!! thank you thank you!!!

Sunday, 27 Jul 2008 10:37 by Meenakshi
Gr8 Tip!!!

Sunday, 27 Jul 2008 10:37 by Sanjay Sahani
Thanks a lot for saving my time.

Sunday, 27 Jul 2008 10:37 by Amadel
Hi thanks for the info! Do you happen to know how to do this in MOSS running in a load balanced server? Thanks!

Sunday, 27 Jul 2008 10:37 by Mel
I followed your post and am still getting the error and not an asp page. Any ideas?

Tuesday, 29 Jul 2008 09:35 by Suresh
After making changes to web.config file, I think we need to do iisreset, otherwise, you may get server error in "/" application.

Monday, 18 Aug 2008 05:48 by

Wednesday, 20 Aug 2008 06:12 by CdMAv
You are the man!! You're truly my personal hero!! I love you mate!!!

Wednesday, 27 Aug 2008 01:37 by Ramprasath
Hi Thanks for solution.This saves lot of time for developers

Saturday, 20 Sep 2008 07:33 by Gavin
Also bear in mind that the _layouts virtual directory has it's own web.config, you'll need to edit this too to get stack dumps from pages under the _layouts directory. -Gsvin

Wednesday, 24 Sep 2008 04:15 by Chuanbo Zhang
thanks, man, it helps me a lot today to find out the problem and fixed it.

Thursday, 9 Oct 2008 03:52 by Dolomite
Exactly which web.config file do you modify? I see like 10 of them on here for the sharepoint setup I have...?

Friday, 14 Nov 2008 06:15 by prashanth
Thanks boss u made my day

Friday, 14 Nov 2008 06:37 by prashanth
Thanks boss u made my day

Thursday, 20 Nov 2008 03:15 by Vadym
Gavin, Iam looking for correct web.config to modify myself. I found this info: In a Microsoft® Windows® SharePoint™ Services deployment, web.config files are contained in the following folders within the file system: Local_Drive:\Inetpub\wwwroot — The web.config file of the top-level content root folder that defines configuration settings for the virtual server of the default Web site in the Windows SharePoint Services deployment. In addition, the content root folder includes a \wpresources folder that contains a web.config file used in Web Part resources. Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\wpresources — A web.config file that is used in Web Part resources for the Global Assembly Cache (GAC). Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\CONFIG — The web.config file and other .config files that together define configuration settings for extending other virtual servers. Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\ISAPI — The web.config file that defines configuration settings for the /_vti_bin virtual directory. Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\LAYOUTS — The web.config file that defines configuration settings for the /_layouts virtual directory. Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\ADMIN\Locale_ID — The web.config file that defines configuration settings for pages used in SharePoint Central Administration. Also previouly was posted by Vince: Your web.config is in the root of your web application. By default these will be in the C:\Inetpub\wwwroot\wss\VirtualDirectories folder. Generally the name of the folder for your site will be either the machine name with a number or the host header with a number. This can be different if the person who created the web application chose a different folder name. You can also find out the folder from within the IIS manager. Good Luck! :o)

Friday, 21 Nov 2008 10:45 by Nagaraju Joshi
Excellent tip! It saved lot of my time in development. Thank you very much!

Tuesday, 25 Nov 2008 02:08 by rüya tabiri
Thank you...

Monday, 8 Dec 2008 11:39 by Ajay
Thanks

Sunday, 14 Dec 2008 02:08 by kidsgame
thanks

Tuesday, 16 Dec 2008 05:10 by Widde
Thanks alot, really a big help.

Saturday, 20 Dec 2008 12:06 by Hemant
Thanks bro... It works....

Saturday, 3 Jan 2009 02:01 by chat
thanks

Monday, 12 Jan 2009 01:30 by dl
thanks...saved me a lot of time...

Saturday, 17 Jan 2009 03:29 by DAve
OMG, I love you man!!! You really helped! I was so frustrated with "unexpected shit occurred" and finally I saw this post. Man, you rock!!!!

Monday, 2 Feb 2009 01:54 by Rahim
THANKS FOR THIS GREAT INFO.

Monday, 2 Feb 2009 06:08 by Oswald
very useful tip

Sunday, 15 Feb 2009 10:21 by Karl
Don't you hate it when something like this is such a simple solution. Thanks.

Thursday, 5 Mar 2009 08:54 by sohbet odalari
thank you very much

Thursday, 5 Mar 2009 10:46 by Peter Walke
Amazing. Thanks so much.

Saturday, 7 Mar 2009 02:10 by güzel sözler
thank you my friends.

Saturday, 7 Mar 2009 03:07 by Sohbet
thank you very much

Sunday, 8 Mar 2009 06:09 by Sohbet Odalari
thankss youu

Friday, 13 Mar 2009 03:36 by Chat
thank you admin.

Saturday, 14 Mar 2009 01:26 by granit
Thank You...

Monday, 16 Mar 2009 02:15 by teg
thx a lot .....

Wednesday, 18 Mar 2009 12:10 by Ligtv izle
thank you cano..

Monday, 23 Mar 2009 06:29 by Mynet
thank you kanka

Tuesday, 24 Mar 2009 04:54 by Sarki Dinle
thank you seoking..

Tuesday, 24 Mar 2009 04:56 by gurhan
thank you kral

Tuesday, 24 Mar 2009 02:04 by Chat Odalari
thank you mcks

Wednesday, 25 Mar 2009 07:16 by Dizi izle
thanks admin sagol

Wednesday, 25 Mar 2009 01:42 by oyun oyna
thank s admin

Friday, 27 Mar 2009 11:19 by Linesh Gajera
This is owesome. I had spent 3 days to figure the problem but just couple of changes to Web.Config saved me

Saturday, 28 Mar 2009 04:47 by Maç izle
thank you babacan

Thursday, 2 Apr 2009 08:10 by ilahiler dinle
thank you very good brother

Monday, 6 Apr 2009 04:01 by ligtv izle
you are my desire..

Friday, 10 Apr 2009 04:36 by justintv
thank you seoking..

Sunday, 12 Apr 2009 12:15 by chat
thank you

Saturday, 18 Apr 2009 11:58 by ligtv izle
thank you kanka

Saturday, 18 Apr 2009 04:52 by youtube muzik dinle
thank youu

Saturday, 18 Apr 2009 04:58 by youtube muzik dinle
thanks kanka

Monday, 27 Apr 2009 05:41 by Muhabbet
Thank You

Tuesday, 28 Apr 2009 03:20 by chat odaları
thank you

Sunday, 3 May 2009 09:36 by sohbet
thanks

Sunday, 3 May 2009 10:12 by aksaray
thank you.

Monday, 4 May 2009 06:19 by justin tv
turkish justin tv..

Wednesday, 6 May 2009 10:20 by sohbet
thank you

Wednesday, 6 May 2009 10:21 by sohbet
thank you

Friday, 8 May 2009 05:46 by ELDA
Ok, I see all the thank you's and you're a life saver etc etc... But what I still don't see is what caused the error in the first place. Everyone that reads these boards are not developers, so even if I looked at the web.config file and made these changes, it still doesn't tell me what the heck caused this in the first place. Thats the answer i'm looking for. A plain and simple answer...

Sunday, 10 May 2009 01:31 by Sohbet Chat Arkadaşlık
Thank you...

Thursday, 14 May 2009 06:51 by jimmie gr
You saved my life.... :)

Thursday, 14 May 2009 08:20 by

Friday, 15 May 2009 02:38 by Till Groos
You made my day! Thanks for this!

Saturday, 16 May 2009 01:41 by Chat
Thank You Admin

Sunday, 17 May 2009 08:29 by sohbet
hallo i wish you verry succes operator

Monday, 18 May 2009 06:26 by Pankaj
Really a thankful solution. Thanks a lot!!!![:)]

Tuesday, 19 May 2009 03:20 by Alisha
Thanks a lot :)

Tuesday, 19 May 2009 08:15 by Edencity
Thank You

Friday, 22 May 2009 08:01 by lig tv izle
thank

Monday, 25 May 2009 05:44 by Edencity Chat
Thank You Admin

Sunday, 31 May 2009 03:16 by Sohbet
hallo i wish you verry succes operator

Friday, 5 Jun 2009 05:28 by Sohbet
hallo dear friends thanks a lot for your workshop

Monday, 8 Jun 2009 05:48 by sohbet
hallo i wish you verry succes operator

Sunday, 14 Jun 2009 08:43 by panoone
The purpose of not provided detailed error reports surrounds security. This is fine in a dev evnironment but I wouldn't recommend it in production. Your trace logs set to verbose should provide all the detail you need. That being said, I believe there's a way to get detailed errors being displayed when accessing the site while directly on a WFE but still provide the clumsy custom error to end users.

Saturday, 20 Jun 2009 12:25 by sohbet
hello ! thanks !

Friday, 26 Jun 2009 05:34 by Sakarya Rehberi
Thank You page admin

Monday, 29 Jun 2009 08:44 by liseli kizlar
thank you kanka

Wednesday, 1 Jul 2009 07:19 by sxe
Thaan you erkan kanka:D

Wednesday, 1 Jul 2009 07:20 by tolga
Saol un beyler

Tuesday, 7 Jul 2009 08:19 by tuan
thank you for your help!!!

Wednesday, 8 Jul 2009 09:24 by islami chat
thank you very much my friends..

Wednesday, 8 Jul 2009 09:28 by islami chat
thank you very much my friends..

Tuesday, 14 Jul 2009 10:18 by koxp
Thank you ... very much

Friday, 17 Jul 2009 03:50 by aşk
I am grateful to you for this great content.

Friday, 17 Jul 2009 04:02 by aşk
hallo dear friends thanks a lot for your workshop

Monday, 20 Jul 2009 11:10 by Rajini Mathavan
Thanks very much...

Thursday, 23 Jul 2009 06:36 by xgs
Great thread, at least now I have a point to start searching for what is wrong... thanks to all of you

Wednesday, 29 Jul 2009 12:44 by Canli Lig Tv
good post thank you

Friday, 31 Jul 2009 05:16 by Alistair McKinnon
many thanks!

Wednesday, 12 Aug 2009 08:49 by Loves
I tried your method, it works fine with most... But there is still a page in my environment is still giving me 'unexpected error has occured' even after the settings are configured...other pages can display the error message fine though. any idea?

Tuesday, 25 Aug 2009 01:03 by NewBeeSharePoint
Thank you

Tuesday, 25 Aug 2009 10:24 by ram
And any one help me..one the web.config file has been updated as above..i been facing with / application error as..where we need to change this code.?

Wednesday, 26 Aug 2009 04:29 by Balaji
Good Saved me Thanks again :)

Thursday, 27 Aug 2009 05:23 by chat
And any one help me..one the web.config file has been updated as above..i been facing with / application error as..where we need to change this code.?

Thursday, 27 Aug 2009 05:30 by ilahiler dinle
Good Saved me Thanks again :)

Thursday, 27 Aug 2009 07:49 by Nishant
You Saved us!!!

Monday, 7 Sep 2009 07:10 by Grup Hepsi
Thank youss Saved

Thursday, 10 Sep 2009 05:42 by chat odaları
tnk you sohbet odaları

Thursday, 10 Sep 2009 05:43 by mirc
tnk you mirc indir

Thursday, 10 Sep 2009 05:54 by sohbet odalari
tnk you sohbet

Thursday, 10 Sep 2009 05:56 by sohbet
tnkyou

Wednesday, 16 Sep 2009 03:32 by Koxp
thank you veRRy good :))

Monday, 21 Sep 2009 08:24 by MaxTsarenko
Thank you sooo much :)

Tuesday, 22 Sep 2009 09:03 by David Lay
2+ years later, a BIG THANKS to you. =)

Monday, 5 Oct 2009 12:45 by sohbet
tnlyou

Tuesday, 6 Oct 2009 07:17 by gay sohbet
thanks you admin

Friday, 9 Oct 2009 07:03 by chat
chat rooms turkish thank you very much..

Saturday, 17 Oct 2009 08:19 by Sohbet
Really a thankful solution. Thanks a lot!!!!

Wednesday, 21 Oct 2009 02:04 by sai
WOW . East or west you are the best. Sai

Thursday, 5 Nov 2009 05:17 by psikolog
Callstack

Wednesday, 18 Nov 2009 08:12 by nick
You just saved me a lot of time, Thanks!

Thursday, 19 Nov 2009 06:06 by ksypolit
Thanks for the info!!!!

Thursday, 26 Nov 2009 11:18 by lez sohbet
lez sohbet odaları thnk you

Friday, 27 Nov 2009 03:06 by lez sohbet
lez sohbet odaları thnk you

Saturday, 28 Nov 2009 04:14 by Casino
Veramente un bel casino tutta questa storia. Non è che ho capito proprio tutto, ma semnbra davero interessante.

Wednesday, 23 Dec 2009 07:16 by Jon
Brilliant Tip! Changed the file, refreshed the page and it said SQL Logon error! Reset the SQL services and all now fine and dandy!

Wednesday, 30 Dec 2009 06:01 by J0E
Thanks 1,000,000!

Saturday, 9 Jan 2010 12:27 by pvp serverlar
thanks for nice ı love site

Saturday, 9 Jan 2010 07:50 by sxe
Thanks verry good

Saturday, 9 Jan 2010 08:45 by dogu akdeniz universitesi
very useful informations

Saturday, 9 Jan 2010 09:20 by oyunkral
Nice post, thanks for

Saturday, 9 Jan 2010 09:28 by Bluray Film indir
nice..Thank you...

Saturday, 9 Jan 2010 09:38 by Ödev
it's great

Saturday, 9 Jan 2010 10:09 by ruzgar
very useful. i'ts great. thank's. ...

Saturday, 9 Jan 2010 10:12 by kızlar
Thank you, we happy we made these shares are

Saturday, 9 Jan 2010 10:15 by webmasters
Good stuff Thanks

Saturday, 9 Jan 2010 10:41 by mp3 dinle
very useful informations

Saturday, 9 Jan 2010 12:56 by PORNO
Veramente un bel casino tutta questa storia. Non è che ho capito proprio tutto, ma semnbra davero interessante.

Saturday, 9 Jan 2010 04:04 by güncel dizi
admin sys gel git gel bir daha git

Tuesday, 12 Jan 2010 03:20 by Dizi
thank you good informations

Wednesday, 13 Jan 2010 09:28 by skyblue
Amended the web.config file as noted at the top of this post and now getting the follow stack error. Help, can someone point me in the right direction to work out what I need to do next? Stack Trace: [SPUpgradeException: An error has occurred on the server.http://go.microsoft.com/fwlink?LinkID=96177] Microsoft.SharePoint.Administration.SPContentDatabase.ValidateDatabaseSchemaCompatibility() +1805 Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request) +61 Microsoft.SharePoint.SPWeb.InitializeSPRequest() +291 Microsoft.SharePoint.SPWeb.EnsureSPRequest() +58 Microsoft.SharePoint.SPWeb.get_Request() +54 Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) +400 Microsoft.SharePoint.WebControls.SPControl.GetContextWeb(HttpContext context) +31 Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea) +385 System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +68 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75



Url

Email

Comments