ライブラリiTextSharpを使用してPDFの生成を会社の古いプロジェクトに実装しようとしています.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 フレームワーク 3.5 です