Class HtmlAttributesA
- Namespace
- Contensive.CPBase.BaseModels
- Assembly
- CPBase.dll
Attributes for html form
public class HtmlAttributesA : HtmlAttributesGlobal
- Inheritance
-
HtmlAttributesA
- Inherited Members
Properties
download
Specifies that the target will be downloaded when a user clicks on the hyperlink
public string download { get; set; }
Property Value
href
Specifies the URL of the page the link goes to
public string href { get; set; }
Property Value
hreflang
Specifies the language of the linked document
public string hreflang { get; set; }
Property Value
media
Specifies what media/device the linked document is optimized for
public string media { get; set; }
Property Value
ping
Specifies a space-separated list of URLs to which, when the link is followed, post requests with the body ping will be sent by the browser (in the background). Typically used for tracking
public string ping { get; set; }
Property Value
referrerpolicy
Specifies which referrer to send
public HtmlAttributesA.HtmlAttributeReferrerPolicy referrerpolicy { get; set; }
Property Value
rel
Specifies the relationship between the current document and the linked document
public HtmlAttributesA.HtmlAttributeRel rel { get; set; }
Property Value
target
Specifies where to open the linked document
public string target { get; set; }
Property Value
type
Specifies the media type of the linked document
public string type { get; set; }