Hi
Thanks in advance
HOW TO SEND MULTIPLE VALUES IN COMMAND ARUMENT IN THE GRID VIEW AND HAVE TO SPILT THE VALUES USING SPILT FUNTION?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Mar 2, 2011, 12:58 PM
http://aspdotnetcodebook.blogspot.com/2008/09/how-to-pass-multiple-values-to.html
Jaganathan BantheswaranPosted Mar 2, 2011, 10:19 AM
You can pass the values like this. ===> CommandArgument='<%#Eval("CityID") + ";" +Eval("Sname")%>'
You can split back it as like this ===> string[] args = gridObj.Split(';');