0

我正在尝试将 htmlinputtext 转换为 htmlgenericcontrol

文件.aspx:

<form runat="server" class="probootstrap-form">         
  <div class="form-group" style="margin-top: 20px">
    <label for="name">Markt Name:</label>
    <div class="form-field">
      <input type="text" id="name" runat="server" required="required" class="form-control" />
    </div>
  </div>
</form>

文件.aspx.cs:

HtmlGenericControl name = (HtmlGenericControl)Form.FindControl("name");

错误:System.InvalidCastException:无法将类型为“System.Web.UI.HtmlControls.HtmlInputText”的对象转换为“System.Web.UI.HtmlControls.HtmlGenericControl”

4

1 回答 1

2

文档中,您可以看到HtmlInputText不继承自HtmlGenericControl,因此无法转换为HtmlGenericControl

HtmlInputText将能够转换为HtmlInputControl, HtmlControl, Controlorobject其中Control是最通用的,在 aspnet 编程中仍然有意义。

于 2019-03-20T09:49:19.937 回答