Question

I would like to know how to add another parameter to this querystring.

e.Item.Cells[0].Text = "<a  title=\"Click to see " + 
functions.email.getFullName(e.Item.Cells[0].Text) + 
"'s Pending Requests\" href=\"default.aspx?U=" + e.Item.Cells[0].Text + 
"\">" + functions.email.getFullName(e.Item.Cells[0].Text) + "</a>";
Was it helpful?

Solution

I am afraid your question seems a bit unclear. To me, it looks like you are setting the value of e.Item.Cells[0].Text= to a string. Isn't that string itself a parameter? If it is, did you mean that you are wanting to concatenate another value to it?

It would also be helpful to to include the function in which you are setting this as well, for more context.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top