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.
我正在尝试从我的 Windows 窗体应用程序发送电子邮件。
我创建了一个用于获取 mail_id 和密码的表单。
Textbox1
Textbox2
用户在这些文本框中输入相同的内容。
如何在两个不同的变量中分配键入的凭据,以便我可以在程序中进一步使用这些变量?
例如:text in textbox1= some variable;text in textbox2= another variable;
text in textbox1= some variable;text in textbox2= another variable;
很简单:
string firstVal = textbox1.Text; string secondVal = textbox2.Text;
但这是基本的!请拿一本书,学习基础知识。
string username = textbox1.Text; string password = textbox2.Text;