AutoPostBack Property
Gets or sets the AutoPostBack property value of SemanticItem controls that reference the SemanticItemControlSettings control. Read/write.
Usage
ASP.NET markup: | <speech:SemanticItemControlSettings AutoPostBack="..." /> |
Get value: | String = SemanticItemControlSettings.AutoPostBack; |
Set value: | SemanticItemControlSettings.AutoPostBack = String; |
Data type: | String |
Required: | No |
Remarks
For more information about the AutoPostBack property of the SemanticItem control, see AutoPostBack.
Example
<form id="Form1" method="post" runat="server">
...
<speech:SpeechControlSettings ID="AllSettings" runat="server">
<Items>
<speech:SpeechControlSettingsItem ID="Settings1" runat="server">
...
<SemanticItem
BindOnChanged="True"
BindAt="Server"
AutoPostBack="True"
SensitiveData="False"/>
...
</speech:SpeechControlSettingsItem>
</Items>
</speech:SpeechControlSettings>
...
<speech:SemanticMap runat="server">
<speech:SemanticItem Settings="Settings1"/>
</speech:SemanticMap>
...
</form>
See Also
SemanticItemControlSettings Class | SemanticItemControlSettings Constructor | SemanticItemControlSettings Members | SemanticItemControlSettings Properties | SemanticItemControlSettings Methods