Javascript error after applying SP3 to MS Project Server 2003

W

willie

dear all,

I got a javascript error on PWA after i applied service pack 3 to Project
Server 2003.
The service pack was downloaded from Microsoft website.
http://www.microsoft.com/downloads/...19-034f-458d-9255-de6c9f2a6f28&DisplayLang=en

Already tried upgrading the database, restart server...but still does not
help.

Anyone can help ?? thanks you very much


the error shows :
//+-------------------------------------------------------------------------------
// // Microsoft Project - Web Client // Copyright (C) Microsoft Corporation,
1999 // // File: WebClient\root\Shell\Shell.js // // Contents: Client-side
Shell functions // // Objects: Shell (client-side) //
//--------------------------------------------------------------------------------
var bHelpExpanded = false; var g_SkipBeforeUnload = false;
//--------------------------------------------------------------------------------
function Body_OnResize() { if (typeof(Workspace_OnResize) != "undefined") {
Workspace_OnResize(); return; } if (typeof(Grid_OnResize) != "undefined")
Grid_OnResize(); }
//--------------------------------------------------------------------------------
function ActionsPaneCollapse_OnClick() { var e = new Error();
window.event.cancelBubble = true; window.event.returnValue = false; if
(event.keyCode == 0 || event.keyCode == 13) { idActionsPane.style.display =
"none"; idActionsTable.style.display = "none";
idActionsPaneCollapsed.style.display = ""; idActPaneExpandArrow.style.display
= ""; idShellSidePane.disabled = true; RepaintSelectElementsForRTL(); try {
idActPaneExpandArrow.focus(); } catch (e) { // Stub } } }
//--------------------------------------------------------------------------------
function ActionsPaneExpand_OnClick() { var e = new Error();
window.event.cancelBubble = true; window.event.returnValue = false; if
(event.keyCode == 0 || event.keyCode == 13) { idActionsPane.style.display =
""; idActionsTable.style.display = ""; idActionsPaneCollapsed.style.display =
"none"; idActPaneExpandArrow.style.display = "none"; idShellSidePane.disabled
= false; RepaintSelectElementsForRTL.....
 
W

willie

Hi all,

we have found the solution.
because "C:\Program Files\Microsoft Office Project Server 2003\IIS Virtual
Root\SHELL\SHELL.ASP" was changed after applying SP3.

Check the close tag of the javascipt, it will solve the problem.
</script>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top