通过分组在 ASP.NET 中呈现相似数据
我正在尝试从数据库中的一些数据创建一些动态 html。我从 db 返回的数据是:
ApplicationName URL ------------------------------ AppName1 URL1 AppName2 URL1 AppName2 URL2 AppName1 URL2
我希望单个应用程序的所有 URL 都应呈现在 ApplicationName 的一个标题下。比如:
AppName1 URL1 URL2 AppName2 URL1 URL2
任何人都可以帮我编写这个代码吗?
I am trying to create some dynamic html out of some data from db. My data returned from db is:
ApplicationName URL ------------------------------ AppName1 URL1 AppName2 URL1 AppName2 URL2 AppName1 URL2
I want that all URL's for a single application should be rendered under one heading of ApplicationName. Like:
AppName1 URL1 URL2 AppName2 URL1 URL2
Can anyone help me in the code for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码后面可能有类似这样的内容,因此您可以访问 aspx 标记中的项目:
然后在您的 aspx 文件中,只需将一些 linq 放入混合中即可执行分组操作:
Your code behind probably has something like this, so you can access the items in your aspx markup:
Then in your aspx file, simply throw in some linq into the mix to perform the grouping operation: