52,781
社区成员
发帖
与我相关
我的任务
分享
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
发送对象:
<asp:TextBox ID="txtToUser" runat="server" BorderStyle="Solid" BorderWidth="1px">
</asp:TextBox>
<asp:CheckBox ID="cbPrivateOrPublicChat" runat="server" Text="是否私聊" OnCheckedChanged="cbPrivateOrPublicChat_CheckedChanged"
AutoPostBack="True" />
<br />
内容:
<asp:TextBox ID="txtChatMessage" runat="server" BorderColor="Black" BorderStyle="Solid"
BorderWidth="1px" Height="56px" TextMode="MultiLine" Width="490px">
</asp:TextBox>
<asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" Text="提交" />
</ContentTemplate>
</asp:UpdatePanel>