asp.net如何获取Girdview控间选中行的值并将这个值显示在另一个页面的label控件上
RT我在做BBS论坛时想让Girdview控件中选中的标题行的值显示到点击后跳转的另外一个页面的label控件上。简单点说BBS论坛的浏览版面上有很多帖子的标题我可以在点...
RT我在做BBS论坛时想让Girdview控件中选中的标题行的值显示到点击后跳转的另外一个页面的label控件上。简单点说BBS论坛的浏览版面上有很多帖子的标题 我可以在点击这些标题之后 使在浏览帖子这个页面上的标题控件 可以显示出我所点击的那个标题的内容
以下是我的代码不知道为什么他总是只显示Girdview第一行的内容 其他的就是不显示
这个是浏览版面页面的代码
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Username"] == null || Session["Username"].ToString() == "")
{
Response.Write("<Script language='javascript'>window.top.location.href='Default.aspx';</Script>");
}
if (this.Session["Username"] != null)
{
this.Label4.Text = this.Session["Username"].ToString();
}
if (!IsPostBack)
{
}
int index = this.GridView3.SelectedIndex;
int i = index + 1;
string HyperLink1 = ((HyperLink)this.GridView3.Rows[i].FindControl("HyperLink1")).Text;
if (HyperLink1 != null)
Session["Title"] = HyperLink1;
下面 这个 是浏览帖子页面的代码
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Username"] == null || Session["Username"].ToString() == "")
{
Response.Write("<Script language='javascript'>window.top.location.href='Default.aspx';</Script>");
}
if (this.Session["Username"] != null)
{
this.Label5.Text = this.Session["Username"].ToString();
}
if (!IsPostBack)
{
}
if (this.Session["Title"] != null)
this.Label6.Text = this.Session["Title"].ToString();
}
我试过了没用的 不知道为什么无论你点哪行获取的总是第一行的数据 展开
以下是我的代码不知道为什么他总是只显示Girdview第一行的内容 其他的就是不显示
这个是浏览版面页面的代码
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Username"] == null || Session["Username"].ToString() == "")
{
Response.Write("<Script language='javascript'>window.top.location.href='Default.aspx';</Script>");
}
if (this.Session["Username"] != null)
{
this.Label4.Text = this.Session["Username"].ToString();
}
if (!IsPostBack)
{
}
int index = this.GridView3.SelectedIndex;
int i = index + 1;
string HyperLink1 = ((HyperLink)this.GridView3.Rows[i].FindControl("HyperLink1")).Text;
if (HyperLink1 != null)
Session["Title"] = HyperLink1;
下面 这个 是浏览帖子页面的代码
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Username"] == null || Session["Username"].ToString() == "")
{
Response.Write("<Script language='javascript'>window.top.location.href='Default.aspx';</Script>");
}
if (this.Session["Username"] != null)
{
this.Label5.Text = this.Session["Username"].ToString();
}
if (!IsPostBack)
{
}
if (this.Session["Title"] != null)
this.Label6.Text = this.Session["Title"].ToString();
}
我试过了没用的 不知道为什么无论你点哪行获取的总是第一行的数据 展开
3个回答
展开全部
不是吧你。。。把获取选中的GridView行的代码写在Page_Load里面?I服了YOU
要实现你想要的功能是直接在前台的GridView控件里做的, <asp:HyperLinkField DataNavigateUrlFormatString="查看帖子.aspx?id={0}" DataTextField="name" HeaderText="标题" DataNavigateUrlFields="id" />
其中的 查看帖子.aspx 代表了要转到的查看帖子的页面名称(路径)
DataTextField="name" name 代表你绑定到该列的数据库字段
DataNavigateUrlFields="id" id 代表 传到查看帖子.aspx的数据库字段
要实现你想要的功能是直接在前台的GridView控件里做的, <asp:HyperLinkField DataNavigateUrlFormatString="查看帖子.aspx?id={0}" DataTextField="name" HeaderText="标题" DataNavigateUrlFields="id" />
其中的 查看帖子.aspx 代表了要转到的查看帖子的页面名称(路径)
DataTextField="name" name 代表你绑定到该列的数据库字段
DataNavigateUrlFields="id" id 代表 传到查看帖子.aspx的数据库字段
展开全部
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
int index = this.GridView1.SelectedIndex;
string id = this.GridView1.DataKeys[index].Value.ToString();
string sql = "delete from article where ID='" + id + "' ";
cc.CommSQL(sql);
cc.MessageBox("删除成功!~");
bind1();
}
int index = this.GridView1.SelectedIndex;
string id = this.GridView1.DataKeys[index].Value.ToString();
是你想要的
如果对您有帮助,请记得采纳为满意答案,谢谢!祝您生活愉快!
vaela
{
int index = this.GridView1.SelectedIndex;
string id = this.GridView1.DataKeys[index].Value.ToString();
string sql = "delete from article where ID='" + id + "' ";
cc.CommSQL(sql);
cc.MessageBox("删除成功!~");
bind1();
}
int index = this.GridView1.SelectedIndex;
string id = this.GridView1.DataKeys[index].Value.ToString();
是你想要的
如果对您有帮助,请记得采纳为满意答案,谢谢!祝您生活愉快!
vaela
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int index = this.GridView3.SelectedIndex;
int i = index + 1;
string HyperLink1 = ((HyperLink)this.GridView3.Rows[i].FindControl("HyperLink1")).Text;
你的index有值吗? 放到OnSelectedIndexChanged()事件中试试
int i = index + 1;
string HyperLink1 = ((HyperLink)this.GridView3.Rows[i].FindControl("HyperLink1")).Text;
你的index有值吗? 放到OnSelectedIndexChanged()事件中试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询