帐户控制器 mvc2

发布于 2024-10-15 05:44:51 字数 200 浏览 0 评论 0原文

我想修改帐户控制器添加一些字段是注册 aspx 中的用户地址 contactno 和 panno 我想要用户名,密码,Emailid 存储在帐户表中,另一个数据 userAddress,contactno,userName Emailid,panno 存储在我们的表中控制器存储同时有两个表值。用户名和电子邮件 ID 存储表帐户和用户详细信息表我在帐户控制器和存储库中编写的代码请帮助我

i want to modify account controller add some field are useraddress contactno and panno in Register aspx from i want to username, password, Emailid are store in account table and anothe data userAddress, contactno, userName Emailid,panno are store in our table the controller store two table value at the same time.the username and emailid store both table account and userdetails table what code i written in account controller and my repository plz help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捂风挽笑 2024-10-22 05:44:51

您应该能够执行以下操作...

1) 在您的模型中(如果运气好的话,请修改AccountModel)添加新字段

2) 在您的控制器中,您将需要更改使用现有帐户数据填充模型的代码

3) 在您的视图中,您将需要添加表单元素来显示要编辑的数据。

4) 提交表单后,ModifyAccountModel 将从表单中获取新值,因此您只需确保用于保存此数据的任何内容都会获取这些字段并存储它们。

You should be able to do the following...

1) In your model (ModifyAccountModel with a bit of luck) add the new fields

2) In your controller, you will need to change the code that populates the model with the existing account data

3) In your view, you will need to add form elements to display the data to be edited.

4) When the form is submitted, the ModifyAccountModel will pick up the new values from the form, so you will just need to ensure that whatever you use to persist this data will take those fields and store them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文