将列表绑定到 asp.net gridview

发布于 2024-10-13 07:44:00 字数 587 浏览 1 评论 0原文

我将一个列表绑定到一个显示不同配置文件的 asp.net gridview 控件(具有名称、密码、描述、日期等属性),

现在的问题在于任何人都可以访问该页面,都可以查看所有配置文件,但我不想要用于查看任何配置文件的“密码” 您可能需要它的代码:

Array k1 = yourlist1.ToArray();

    business.clsprofiles obj = new business.clsprofiles();
    List<business.clsprofilesprp> objprp = new List<business.clsprofilesprp>();
    for (Int32 i = 0; i < k1.Length; i++)
    {
        Int32 z = Convert.ToInt32(k1.GetValue(i));
        objprp.AddRange(obj.fnd_profiles(z));
    }
    GridView2.DataSource = objprp;
    GridView2.DataBind();
    con.Close();

I am binding a list to an asp.net gridview control which displays different profiles(having attributes such as name, password,description,date etc.)

now the problem lies anyone can visiting the page is able to view all profiles but I want no one to view the "PASSWORD" of any of the profiles
You may need the code for it:

Array k1 = yourlist1.ToArray();

    business.clsprofiles obj = new business.clsprofiles();
    List<business.clsprofilesprp> objprp = new List<business.clsprofilesprp>();
    for (Int32 i = 0; i < k1.Length; i++)
    {
        Int32 z = Convert.ToInt32(k1.GetValue(i));
        objprp.AddRange(obj.fnd_profiles(z));
    }
    GridView2.DataSource = objprp;
    GridView2.DataBind();
    con.Close();

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

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

发布评论

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

评论(1

千鲤 2024-10-20 07:44:01

您可能只需要隐藏 gridview 列:

GridView2.Columns[0].Visible = false;

...用列的索引替换 0。然而,这是一种相当随意的处理问题的方法,因为对底层类的更改可能会暴露密码列。更好的方法是:

  1. 根本不以纯文本形式存储密码。
  2. 如果不需要,首先不要将密码拉入业务对象。
  3. 继承底层业务对象类并更改对密码列的访问权限。
  4. 手动指定列而不是使用 AutoGenerateColumns

You probably just need to hide the gridview column:

GridView2.Columns[0].Visible = false;

...replacing 0 with the index of the column. This is a fairly haphazard way of treating the problem however, as a change to the underlying class may expose the password column. A better approach would entail:

  1. Not storing the passwords in plain text at all.
  2. Not pulling the passwords into the business object in the first place if you don't need them.
  3. Inheriting the underlying business object class and changing the access to the password column.
  4. Manually specifying your columns rather than using AutoGenerateColumns
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文