Not
Bu sayfaya erişim yetkilendirme gerektiriyor. Oturum açmayı veya dizinleri değiştirmeyi deneyebilirsiniz.
Bu sayfaya erişim yetkilendirme gerektiriyor. Dizinleri değiştirmeyi deneyebilirsiniz.
Use webpage (HTML) web resources to create user interface elements for client extensions.
Capabilities of HTML web resources
Because an HTML web resource streams to the user's browser, it can include any content that the browser renders.
Limitations of HTML web resources
- An HTML web resource can't contain any code that must run on the server. You can't upload ASP.NET pages as HTML web resources.
- HTML web resources can accept only a limited number of query string parameters. Pass parameters to HTML web resources
- The form runtime might reload HTML web resources embedded as controls in a form to improve performance. For example, the form runtime might destroy and reinitialize the control during tab navigation.
Use the text editor for HTML web resources
The text editor in the web resource form is designed for simple HTML editing. For more complex HTML documents, edit the code in an external editor and use the Browse button to upload your file.
For example, a more complex HTML page that requires script to render the contents of the page begins like the following sample.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
<script src="Script/Script.js" type="text/javascript"></script>
<link href="CSS/Styles.css" rel="stylesheet" type="text/css" />
</head>
<body onload="SDK.ImportWebResources.showData()">
<div id="results" />
</body>
</html>
For example, a more complex HTML page that requires script to render the contents of the page begins like the previous sample. After you open the document in the text editor and save it, the HTML changes to the following sample:
<HTML><HEAD><TITLE></TITLE>
<META charset=utf-8></HEAD>
<BODY contentEditable=true onload=SDK.ImportWebResources.showData()>
<SCRIPT type=text/javascript src="Script/Script.js"></SCRIPT>
<LINK rel=stylesheet type=text/css href="CSS/Styles.css">
<DIV id=results></DIV></BODY></HTML>
Prevent editing of web resources for managed solutions
Because anyone can change the HTML in web resources by using the text editor, use managed properties to set complex HTML web resources as not customizable for managed solutions. When you view web resources in the solutions window, open the Managed Properties dialog box to set the Customizable property to false.
Reference other web resources from an HTML web resource
You can create a set of related files outside of model-driven apps that use any of the web resource file types. If you're careful to always use relative paths and import each web resource with a consistent naming convention that reflects the folder structure of your website, the HTML web resource maintains links to related CSS, XML, JScript, and image files that you import as web resources.
For example, if you create a web application project that uses the following folder and file structure:
page.htm[Styles]style.css
[Scripts]script.js
When you import these files as web resources, you can name where your solution publisher customization prefix is new in the following manner:
new_/page.htmnew_/Styles/style.cssnew_/Scripts/script.js
When you follow this pattern, your new_/page.htm HTML web resource can reference the other files the most common way by using relative paths as shown in the following example.
<script src="Scripts/script.js" type="text/javascript"></script>
<link href="Styles/style.css" rel="stylesheet" type="text/css" />
The solution publisher customization prefix becomes a virtual root folder for all the web resources in your solution. If you change your customization prefix, the relative paths within your HTML web resources don't change.
Note
- An HTML web resource added to a form can't use global objects defined by the JavaScript library loaded in the form. An HTML web resource can interact with the
Xrm.PageorXrm.Utilityobjects within the form by usingparent.Xrm.Pageorparent.Xrm.Utility, but global objects defined by form scripts aren't accessible by using the parent. You should load any libraries that an HTML web resource needs within the HTML web resource so they're not dependent on scripts loaded in the form. - References included in code between web resources aren't tracked as solution dependencies.
Client applications that support working offline can download web resources.
Pass parameters to HTML web resources
An HTML web resource can accept only the parameters in the following table.
| Parameter | Name | Description |
|---|---|---|
typename |
Table Name | The name of the table. |
type |
Table Type Code | An integer that uniquely identifies the table in a specific organization. |
id |
Object GUID | The GUID that represents a record. |
orgname |
Organization Name | The unique name of the organization. |
userlcid |
User Language Code | The language code identifier being used by the current user. |
orglcid |
Organization Language Code | The language code identifier that represents the base language for the organization. |
data |
Optional Data Parameter | An optional value that can be passed. |
formid |
Form ID | The GUID that represents a form ID. |
entrypoint |
Entry Point | A string value. This parameter is intended to be passed as an optional value to web resources opened as custom help content for a table. When enabled, the custom help URL includes a value of either form or hierarchychart. |
pagemode |
For internal use only. | |
security |
For internal use only. | |
tabSet |
For internal use only. |
If you pass multiple values in the data parameter, they're automatically encoded. You must include logic to decode the multiple parameters by using script in your HTML web resource. The Sample: Passing multiple values to a web resource through the data parameter article demonstrates one approach to address passing multiple parameter values.
Note
All characters included in the query string go through validation to ensure the validity of the parameters passed. If the validation process finds any parameters that aren't valid, the request fails. For example, passing text values enclosed in angular brackets is an invalid parameter type.
See also
Web resources
Create accessible web resources
Using Style Sheet (CSS) web resources
Using JavaScript web resources
Using Data (XML) web resources
Using Image (JPG, PNG, GIF) web resources
Using Stylesheet (XSL) web resources