当我将表单放入 Telerik 选项卡条时,表单元素不会在 HTML 中呈现。但是会渲染输入元素。这种形式在标签条之外工作正常。
tabstrip.Add()
.Text("Variants")
.Content(() =>
{
%>
<form action="#" id="form1" method="post">
<input id="option" type="text" />
<input type="submit" value="save" /></span>
</form>
<%
});