我正在尝试使用 iTextSharp 库为我们在公司的旧项目生成 PDF,一切正常,除了将 Imports 添加到使用 RadioButtonList 的表单时,它将此 RadioButtonList 视为 iTextSharp 对象而不是System.Web.UI.WebControls 并给我以下错误
重载解析失败,因为无法使用这些参数调用可访问的“添加”:
'Public Sub Add(item As System.Web.UI.WebControls.ListItem)': Value of type 'iTextSharp.text.ListItem' cannot be converted to 'System.Web.UI.WebControls.ListItem'.
'Public Sub Add(item As String)': Value of type 'iTextSharp.text.ListItem' cannot be converted to 'String'
该控件定义如下:
<asp:RadioButtonList ID="rblChargeOrNot" runat="server" AutoPostBack="True" RepeatDirection="Horizontal" Width="60%"></asp:RadioButtonList>
和同样的
<asp:DropDownList ID="ddlnumber" runat="server"></asp:DropDownList>
使用的技术是 vb.net framework 3.5