0

当我在文本框中输入电子邮件地址并按下提交按钮时,我收到以下错误:

错误:参数“地址”不能为空字符串。参数名称:地址

这是我用来设置地址的代码:

Mail_Data.MailTo =Textbox1.Text;

当文本框不为空时会发生此错误。有任何想法吗?

4

1 回答 1

0

If you are using the mailmessage function then you need to call the Add to add the string

Mail_Data.MailTo.Add(TextBox1.Text);
于 2012-12-04T16:19:31.560 回答