문제

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