c#asp.net如何获取html编辑器里的内容
代码如下:<iframesrc="QzoneEditor/Edit.html?I=content&B=ContentBg"framehorder="0"marginhei...
代码如下:
<iframe src="QzoneEditor/Edit.html?I=content&B=ContentBg" framehorder="0" marginheight="0" marginwidth="0" scrolling="No" style="height:100%;width:100%"></iframe>
<input type="submit" value="提交" name="tijiao" id="Submit1" onserverclick="Submit1_ServerClick" onclick="countDown()" runat="server" /> <br/>
<div style="display:none;">
<input id="xinzhi" type="text" value="" name="ContentBg" />
<br />
<textarea id="txtarea" name="content" style="width:800px;height:100px; " >这里是内容内容</textarea></div>
请问我的C#asp.net如何获取隐藏控件textarea 里的内容? 展开
<iframe src="QzoneEditor/Edit.html?I=content&B=ContentBg" framehorder="0" marginheight="0" marginwidth="0" scrolling="No" style="height:100%;width:100%"></iframe>
<input type="submit" value="提交" name="tijiao" id="Submit1" onserverclick="Submit1_ServerClick" onclick="countDown()" runat="server" /> <br/>
<div style="display:none;">
<input id="xinzhi" type="text" value="" name="ContentBg" />
<br />
<textarea id="txtarea" name="content" style="width:800px;height:100px; " >这里是内容内容</textarea></div>
请问我的C#asp.net如何获取隐藏控件textarea 里的内容? 展开
4个回答
展开全部
看你 最顶上Iframe 里面嵌套了 一个QzoneEditor 的控件吧。如果是用的这个编辑器,你就要找相关的控件说明。
如果是textarea 里面的内容话,
可以用<asp:TextBox ID="txt1" TextMode=MultiLine runat="server" ></asp:TextBox>
来替代 <textarea id="txtarea" name="content" style="width:800px;height:100px; " ></textarea>标签,然后根据ID 取内容就行了。
如果是textarea 里面的内容话,
可以用<asp:TextBox ID="txt1" TextMode=MultiLine runat="server" ></asp:TextBox>
来替代 <textarea id="txtarea" name="content" style="width:800px;height:100px; " ></textarea>标签,然后根据ID 取内容就行了。
展开全部
resquest["content"]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把textarea 加一个runat="server" 属性,然后就可以在后台用id 取到它的值了.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<textarea id="txtarea" runat="server" name="content" style="width:800px;height:100px; " >这里是内容内容</textarea>
后台txtarea.value
或者
<textarea id="txtarea" name="content" style="width:800px;height:100px; " >这里是内容内容</textarea>
后台
resquest["content"]
后台txtarea.value
或者
<textarea id="txtarea" name="content" style="width:800px;height:100px; " >这里是内容内容</textarea>
后台
resquest["content"]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询