<CSBlog:UploadWeblogPostAttachmentForm />
The Form implementing support for uploading post attachments for WeblogPosts.
Properties/Attributes
| Property |
Type |
Description |
| ContainerId |
String |
The ID of the tag wrapping this control
|
| ControlIdsToHideWhenLocalAttachmentsNotAllowed |
String |
Gets or sets the control ids to hide when local attachments are not allowed.
|
| ControlIdsToHideWhenNotVisible |
String |
Gets or sets the control ids to hide when not visible.
|
| ControlIdsToHideWhenRemoteAttachmentsNotAllowed |
String |
Gets or sets the control ids to hide when remote attachments are not allowed.
|
| CssClass |
String |
CSS class of the tag wrapping this control
|
| DataSource |
Object |
Gets or sets the data source of the object to which this form is bound.
|
| ErrorTextId |
String |
Gets or sets the ID of the error IText control.
|
| FileHtmlInputFileId |
String |
Gets or sets the ID of the file HtmlInputFile control.
|
| ID |
String |
Gets or sets the programmatic ID of the control. This ID can be used as a reference by other controls.
|
| LinkToUrlRadioButtonId |
String |
Gets or sets the ID of the link to URL RadioButton control.
|
| SaveButtonId |
String |
Gets or sets the ID of the save IButton control.
|
| Tag |
WrappedControlTag Enumeration |
The WrappedControlTag of the tag wrapping this control
| Option |
Type |
Description |
| Acronym |
Enumeration Value |
|
| B |
Enumeration Value |
|
| Blockquote |
Enumeration Value |
|
| Caption |
Enumeration Value |
|
| Center |
Enumeration Value |
|
| Dd |
Enumeration Value |
|
| Div |
Enumeration Value |
|
| Dl |
Enumeration Value |
|
| Dt |
Enumeration Value |
|
| Em |
Enumeration Value |
|
| H1 |
Enumeration Value |
|
| H2 |
Enumeration Value |
|
| H3 |
Enumeration Value |
|
| H4 |
Enumeration Value |
|
| H5 |
Enumeration Value |
|
| H6 |
Enumeration Value |
|
| I |
Enumeration Value |
|
| Li |
Enumeration Value |
|
| Ol |
Enumeration Value |
|
| Ul |
Enumeration Value |
|
| P |
Enumeration Value |
|
| Small |
Enumeration Value |
|
| Span |
Enumeration Value |
|
| Strike |
Enumeration Value |
|
| Strong |
Enumeration Value |
|
| Sub |
Enumeration Value |
|
| Sup |
Enumeration Value |
|
| U |
Enumeration Value |
|
| Td |
Enumeration Value |
|
| Th |
Enumeration Value |
|
| Label |
Enumeration Value |
|
| Fieldset |
Enumeration Value |
|
| Legend |
Enumeration Value |
|
| Unknown |
Enumeration Value |
|
|
| UploadFileRadioButtonId |
String |
Gets or sets the ID of the upload file RadioButton control.
|
| UrlTextBoxId |
String |
Gets or sets the ID of the URL TextBox control.
|
| ValidationGroup |
String |
Gets or sets the validation group.
|
| Visible |
Boolean |
Gets or sets whether this control should be rendered. If set to false, the control will not render.
|
Inner Properties
<DisplayConditions>...</DisplayConditions>
Defines required conditions that must be met to display this control
Formatting Templates
<FormTemplate>...</FormTemplate>
Template to be rendered as the content of the form, if defined and the form is rendered.
<LeaderTemplate>...</LeaderTemplate>
Template to be rendered before the content of the control, if the control is rendered.
<TrailerTemplate>...</TrailerTemplate>
Template to be rendered after the content of the control, if the control is rendered.
Example
The following is a simple/minimal example of the <CSBlog:UploadWeblogPostAttachmentForm /> control:
<CSBlog:UploadWeblogPostAttachmentForm runat="server" />
The following example shows all of the configurable options of the <CSBlog:UploadWeblogPostAttachmentForm /> control:
<CSBlog:UploadWeblogPostAttachmentForm
ContainerId="..."
ControlIdsToHideWhenLocalAttachmentsNotAllowed="..."
ControlIdsToHideWhenNotVisible="..."
ControlIdsToHideWhenRemoteAttachmentsNotAllowed="..."
CssClass="..."
ErrorTextId="..."
FileHtmlInputFileId="..."
ID="..."
LinkToUrlRadioButtonId="..."
SaveButtonId="..."
Tag="..."
UploadFileRadioButtonId="..."
UrlTextBoxId="..."
ValidationGroup="..."
Visible="..."
runat="server">
<DisplayConditions>
...
</DisplayConditions>
<FormTemplate>
...
</FormTemplate>
<LeaderTemplate>
...
</LeaderTemplate>
<TrailerTemplate>
...
</TrailerTemplate>
</CSBlog:UploadWeblogPostAttachmentForm>