c# – 从asp.net中的dataSet获取一个值

前端之家收集整理的这篇文章主要介绍了c# – 从asp.net中的dataSet获取一个值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在从tbl_message表中做一个查询获取Title和RespondBY,我要在对数据中继器进行数据绑定之前解密Title.在做数据库之前,如何访问标题值.
string MysqLStatement = "SELECT Title,RespondBy  FROM tbl_message  WHERE tbl_message.MsgID = @MsgID";

using (DataServer server = new DataServer())
{
    MysqLParameter[] param = new MysqLParameter[1];
    param[0] = new MysqLParameter("@MsgID",MysqLDbType.Int32);
    param[0].Value = MessageID;
    command.Parameters.AddWithValue("@MsgID",MessageID);
    ds = server.ExecuteQuery(CommandType.Text,MysqLStatement,param);
}
rptList.DataSource = ds;
rptList.DataBind();


  <table style="width: 498px; color: #F5F5F5;">
        <asp:Repeater ID="rptList" runat="server">
            <HeaderTemplate>
            </HeaderTemplate>
            <ItemTemplate>
                <tr>
                    <td width="15%">
                        <b>Subject</b>
                    </td>
                    <td width="60%">
                        <asp:Label ID="lbl_Subj" runat="server" Text='<%#Eval("Title")%>' />
                    </td>
                </tr>

解决方法

可能,像下面的代码部分,你可以得到标题,然后尝试这个编码
rptList.DataSource = ds;
  rptList.DataBind();

以下代码部分可以从dataset获取标题

string title = ds.Tables[0].Rows[0]["Title"].ToString();
原文链接:https://www.f2er.com/csharp/91278.html

猜你在找的C#相关文章