数据库中每种产品类型的 ASP.NET 3.5 Gridview 布局
我正在尝试创建一个简单的类似 CMS 的后端应用程序,它使用 TreeView 进行类别,使用 GridView 进行产品显示/编辑。 我遇到的问题在于,每种产品类型都有不同的表结构,并且只有一个页面(GridView)显示它们。 这还不错,因为 AutoGenerateColumns 做得非常好,除了我需要显示图像的一列以及在编辑模式下激活 jquery 脚本的按钮。 请指教。
I'm trying to create a simple CMS-likeb backend app that uses TreeView for categories and GridView for product display/editing.
The problem that I'm experiencing lies within the fact that there is a different table structure for each product type and only one page(GridView) that displays them.
That would not be so bad, as AutoGenerateColumns does a pretty nice job, except for one column that I need to display an image and in edit mode a button that activates a jquery script.
Please advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题的解决方案是在 gridview 中使用模板字段,这里是示例的链接 向 GridView 控件添加模板字段
I think the solution for your problem is to use a template field in your gridview here is the link for the example Adding Template Fields to a GridView Control