主题: DropDownList无法获取KindEditor值
作者: 船长, 发布日期: 2013-04-06 18:46:35, 浏览数: 2702
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
        onselectedindexchanged="DropDownList1_SelectedIndexChanged">
        <asp:ListItem>aaa</asp:ListItem>
        <asp:ListItem>bbb</asp:ListItem>
    </asp:DropDownList>
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        string s = Request.Form["content1"];  //content1为文本域,但Request.Form["content1"]获取到的值是文本域默认值。如果服务器端控件是Button,其click事件则可以获取当前文本域的值,请问是否只有submit提交才能获取到编辑器里的当前值
    }  
作者: 灵魂重铸, 发布日期: 2013-11-14 11:11:07
我也有同样的问题。。。。
回复
发表新帖 发表回复