从 C# asp.net 中的 ListView 获取值

发布于 2024-12-11 20:10:08 字数 432 浏览 0 评论 0原文

我正在生成一个如下所示的 listView

在此处输入图像描述

现在,单击“添加到公文包”按钮,我需要仔细检查每个项目,并在用户输入数量后通过电子邮件发送。

我看到我可以做这样的事情

 foreach (var item in productFormsView.Items)
 {
     var somevalue = ((Form)item.DataItem).Quantity;
 }

但是,item.DataItem 返回 null 如下。如何从“QUANTITY”文本框中获取文本?

在此处输入图像描述

I have am generating a listView that looks like this

enter image description here

Now, on the click of the "Add To Briefcase" button, I need to go though the each item and email the once where user has entered quantity.

I saw I can do something like this

 foreach (var item in productFormsView.Items)
 {
     var somevalue = ((Form)item.DataItem).Quantity;
 }

However, item.DataItem is returning null as below. How do I get the text from "QUANTITY" textboxes?

enter image description here

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

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

发布评论

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

评论(1

负佳期 2024-12-18 20:10:08

当您单击按钮时。
您的网络服务器收到一个新请求。productFormsView 将被初始化,因此该项为空。
当您点击按钮时,您可以通过javascript将数量数据保存在某个隐藏字段中,并从Request.Form[“xxx”]中获取数量

when you click the button.
there was a new request come to your web server.the productFormsView will be init,so the item is null.
you can save the quantity data in some hidden filed by javascript when you click the button, and get the quantity from Request.Form["xxx"]

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