我只是 C# 的菜鸟,我有这个问题要问你。
我这里有一个表格,要求提供登录详细信息。它有两个文本字段:
- 用户名
- 密码
我想要的是在该文本字段中输入字符串。
我还不熟悉 C# 中的方法..(在 java 中,使用 getString 方法)。C# 中的“等效”方法可能是什么?
在 C# 中,与 java 不同,我们不必使用任何方法。TextBox 属性Text
用于获取或设置其文本。
得到
string username = txtusername.Text;
string password = txtpassword.Text;
放
txtusername.Text = "my_username";
txtpassword.Text = "12345";
使用 MVC 时,请尝试使用 ViewBag。从文本框中获取输入并在视图中显示的最佳方式。
I show you this with an example:
string userName= textBox1.text;
and then use it as you wish
如果在字符串中:
string yourVar = yourTextBoxname.Text;
如果是数字:
int yourVar = int.Parse(yourTextBoxname.Text);
获取文本框的值
string username = TextBox1.Text;
string password = TextBox2.Text;
设置文本框的值
TextBox1.Text = "my_username";
TextBox2.Text = "12345";