我想實現使用庫iTextSharp生成PDF到我們在公司的舊項目,一切工作都很好,除了添加導入到使用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框架3.5
我認爲它的控制本身,這是非常簡單的! 非常感謝:) –