orarlyInany
New Member
I am generating a linkbutton dynamically and setting its postbackurl by iterating over a collection the linkbutton shows the correct url when i hover mouse over it but when i click the linkbutton only three of intended five querystring parameters are passed.I,m using Firefoxhere's my code\[code\] foreach(var item in collection){linkbutton b = new linkbutton();linkbutton.postbackurl="somepage.aspx?" + "param1="+ item.val1 + "¶m2=" + item.val2 + "¶m3=" + item.val3+ "¶m4=" + item.val4+ "¶m5=" +item.val5; PlaceHolder1.Controls.Add(b);}\[/code\]however when i click the linkbutton browser opens\[code\]somepage.aspx?param1=val1¶m2=val2¶m5=val5\[/code\]all values are present in the collection itemplus the browser ignores param3,4 in the link itself:< once again HELP!!!