我是.Net 开发的新手,所以我事先为这样的愚蠢问题道歉。
我正在尝试理解和学习 .Net 开发,所以我正在查看这个在 .ascx 文件中有文本框的项目,我相信它背后的代码应该将在这些文本框中输入的数据保存到数据库中。但我不明白这些数据是如何存储或去哪里的。基本上文件后面的代码看起来像这样,
public partial class registration : System.Web.UI.UserControl
{
protected global::System.Web.UI.WebControls.Label lblDisclosure;
private ResourceManager rm = null;
protected void Page_Load(object sender, EventArgs e)
{
lblFirstName.Text = rm.GetString("FirstName");
}
}
有人可以帮我吗?或者给我一些资源来继续阅读。