Вопрос

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>";
Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top