How to Modify text on the Project Server Page

Source: Internet
Author: User

We often need to modify the page characters or add page controls on the projectserver page. However, because Sharepoint is a multilingual version, we cannot directly add the <A> Delete </a> label on the page and do not recognize Chinese characters. What should we do?

Open the front-end file on the page and you will see

<Asp: hyperlink id = "attachmentsissueslink" target = "_ new" runat = "server" text = "<% $ resources: PWA, statusing_details_attachments_issues_label %>"/>

The original text of such a control is searched by resources. How can we find resources.

Under c: \ Inetpub \ wwwroot \ WSS \ virtualdirectories \ 80 \ app_globalresources, you can find all the resource files and the resources: PWA file.

We can find a PWA. zh-cn.resx file, which is the corresponding resources: PWA Chinese resource file.

You can open the resource file in notepad and find the statusing_details_attachments_issues_label label.

<Data name = "statusing_details_attachments_issues_label" XML: Space = "preserve">
<Value> problem </value>
</Data>

Let's modify it,

<Data name = "statusing_details_attachments_issues_label" XML: Space = "preserve">
<Value> question 123 </value>
</Data>

Save and refresh the page to get the modified Chinese characters.

The above is a modification. if you add a front-end control, it is best to only use the HTML Tag, because we cannot modify the background when adding a server control.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.