URL element (View)
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Renders the URL of a particular form for a specified list.
<URL
Cmd = "Text"
NoID = "TRUE" | "FALSE">
</URL>
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
Attribute | Description |
---|---|
Cmd |
Optional Text. Specifies the display mode appropriate for the form. Can be one of the following values for DisplayMode: Display, DisplayHead, Edit, New, PreviewDisplay, PreviewEdit, PreviewNew. This attribute can also be set to LookUp, which is used during field rendering to return the display form in the foreign list for a lookup field. |
NoID |
Optional Boolean. TRUE to return the URL of the item form without including the item ID as part of the URL. |
Child elements
None
Parent elements
Numerous
Occurrences
- Minimum: 0
- Maximum: Unbounded
Remarks
Because links returned by this element are absolute URLs and already encoded, there is no need to use the URLEncodeAsURL attribute to encode the URL (see Global Attributes for HTML-Rendering Elements).
The following examples show the URLs returned by using the URL element on an Announcements list:
<URL Cmd="EDIT"/>
renders"http://
Server_Name/
Site_Name/Lists/Announcements/EditForm.aspx"
<URL Cmd="NEW"/>
renders"http://
Server_Name/
Site_Name/Lists/Announcements/NewForm.aspx"
<URL Cmd="DISPLAY"/>
renders"http://
Server_Name/
Site_Name/Lists/Announcements/DispForm.aspx"