Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストボックスにメールアドレスを入力して送信ボタンを押すと、次のエラーが表示されます。
エラー: パラメータ 'address' を空の文字列にすることはできません。パラメータ名:アドレス
これは、アドレスを設定するために使用するコードです。
Mail_Data.MailTo =Textbox1.Text;
このエラーは、テキスト ボックスが空でない場合に発生します。何か案は?
メールメッセージ関数を使用している場合は、Addを呼び出して文字列を追加する必要があります
Mail_Data.MailTo.Add(TextBox1.Text);