如何将Linkbutton的文本转换为其Click事件中的字符串类型

时间:2013-10-30 10:39:09

标签: c# asp.net .net gridview linkbutton

我在gridview中发布问题...发布时,问题将在按钮点击事件中从gridbox文本转换为gridview中的linkbutton控件

直到这个我有我想要的但是

我无法获取字符串类型中的LinkBut​​ton文本,以便在其子页面上再次发布相同的问题,并在同一页面下单独查看它的回复

做ASP.net C#2.0

protected void QuestionLinkButton_Click(object sender, EventArgs e)
    {
string LBQ = linkbutton.text; 
}

2 个答案:

答案 0 :(得分:8)

protected void QuestionLinkButton_Click(object sender, EventArgs e)
{
    LinkButton btn = sender as LinkButton;
    string LBQ = btn.Text; 
}

答案 1 :(得分:1)

我使用下面的代码并得到了我的结果

protected void QuestionLinkButton_Click(object sender, EventArgs e)
    {
        Session["LBQ"] = (sender as LinkButton).Text;
        Response.Redirect("Thread.aspx");
    }

protected void Page_Load(object sender, EventArgs e)
    {
 string Ques = Convert.ToString(Session["LBQ"]);
        Questionlabel.Text = Ques;      
    }