源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

让GridView只显示特定用户的数据的方法

  • 时间:2022-08-20 11:29 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:让GridView只显示特定用户的数据的方法
1、新建一个Label1来储存username,这个是我这个方法成功的关键,因为我尝试用Session("username")失败。 改用control 来传递变量,成功! 2、“GridView tasks”--“configure Data Source”--一路next下去---到了“Define Custom Statements or Stored Procedures”窗口。把SQL Selete 语句 SELECT CourseId, Description, [Content], ContentType, ContentSize, Sendor, FileName, FileTime FROM Course 改为 SELECT CourseId, Description, [Content], ContentType, ContentSize, Sendor, FileName, FileTime FROM Course WHERE (Sendor = @username) 2、点Next到如下窗口,设置如图: [img]http://album.hi.csdn.net/app_uploads/chjk1/20081029/200153823.p.JPG?d=20081029200219401[/img] 最后:我的username都是用Membership函数获得的
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部