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>";
Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top