如何使用向导 Web 控件收集的数据更新数据库?

发布于 2024-10-30 02:01:57 字数 151 浏览 1 评论 0原文

我尝试了有关如何使用 ASP.NET 向导 Web 控件的演示。

现在每一步收集数据后,如何将数据保存到数据库中?我只是不明白怎么办。事实上,我没有找到任何例子告诉我如何做到这一点。我什至不知道是否必须使用数据源控件或只是将向导连接到数据库。

感谢您的帮助

I've tried a demo on how to use the ASP.NET Wizard web Control.

Now after collecting data in each step, how do I save the data to the database? I just do not see how. Actually, I didn't find any example telling me how to do so. I don't even know if I have to use a data-source control or just hook-up the wizard to the database.

Thanks for helping

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

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

发布评论

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

评论(1

你曾走过我的故事 2024-11-06 02:01:57

向导控件就像任何其他页面一样,除了它隐藏和隐藏之外。显示当前步骤中的控件。

您可以通过两种方式解决您的问题:

1)用户移动到新步骤后,通过单击“下一步”,捕获当前步骤中的所有字段数据,并将其存储在数据库中。

2) 如果您希望用户在将数据保存到数据库之前完成整个向导,请处理“完成”按钮单击,并检索所有控件值,并将它们存储在数据库中。

您可以非常简单地获取 Control 值:ControlName.Proprty(Text/SelectedIndex/Checked 等)。

这有帮助吗?

Wizard Control is just like any other Page, Except it hides & Displays controls in the Current Step.

You could go about your problem in 2 ways:

1) After User moves to new Step, by clicking NEXT, capture all fields data in the current step, and store it in the Database.

2) If you want the user to complete the whole wizard before saving data to the Database, Handle the Finish Button Click, and retreve all controls value, and store them in Database.

You can get Control values pretty straightforwardly: ControlName.Proprty (Text/SelectedIndex/Checked, etc).

does this help?

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