PRJ2000: Hyperlinks Are Not Displayed in Microsoft Project Central (314569)



The information in this article applies to:

  • Microsoft Project 2000

This article was previously published under Q314569
NOTE: Because there are several versions of Microsoft Windows, the following steps may be different on your computer. If they are, see your product documentation to complete these steps.
Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site: For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

SYMPTOMS

When you attempt to insert hyperlinks into a Microsoft Project 2000 file and upload the file to Microsoft Project Central, the hyperlinks are not displayed in Microsoft Project Central.

CAUSE

This behavior can occur when the hyperlinks do not include the following text:

http://

RESOLUTION

To resolve this issue, replace the code that causes the error. To do this, follow these steps.

NOTE: before you perform the following steps, make sure that you have Microsoft Project Central 2000 SR1 or run the SR1 Patch. If you apply the patch after you perform the following steps, you do not resolve the issue.

  1. Start Windows Explorer.
  2. Open ProjectCentral/views/portfiolioview.asp.
  3. Locate the following text:
    OpenLink(link)
    					
  4. Replace the block of code (all of the text between the brackets) in the OpenLink(link) function with the following:
    function OpenLink(link)
    
    {
    
     var sProt = "http://";
    
     if (link.search(/:\\\\/) != 1 || link.serach(/:\/\//) != 1)
    
       sProt = "";
    
     <%if (Request.QueryString('w32').Item == '1') {%>
    
       window.location.href = sProt+link;
    
     <%} else {%>
    
       window.open(sProt+link,null,"");
    
     <%}%>
    
    }
    					
  5. Repeat steps 1 through 4 on each of the following pages:
    • ProjectCentral/views/projectreport.asp
    • ProjectCentral/views/webclientview.asp
    • ProjectCentral/tasks/taskspage.asp

MORE INFORMATION

The following file is available for download from the Microsoft Download Center:
Release Date: May-05-2001

For additional information about how to download Microsoft Support files, click the following article number to view the article in the Microsoft Knowledge Base:

119591 How to Obtain Microsoft Support Files from Online Services

Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help to prevent any unauthorized changes to the file.

Modification Type:MinorLast Reviewed:1/7/2006
Keywords:kbprb KB314569