Hi
I am looking to get a value from label text and then passed to another page to bind my listview depending on this query string, so can you help me with that is it possible to do it and give me a tips of how i can bind my listview depending a this query string
(Note: the label text is handling the UID which is a primary key in the user table and depending on UID "which is the query string" the listview will bind). At the below code i am getting red line under response.redirect with error message: " Cannot assign
to 'Redirect' because it is a 'method group' "
protected void LinkButton1_Click(object sender, EventArgs e)
{
Response.Redirect = "UserAds.aspx?" + adsusrnmlbl.Text;
}
and the below code is the listview which locate in UserAds.aspx
if (!IsPostBack)
{
...
Go to the complete details ...