Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
How to retrieve the mulitple column value of webcombo in ultrawebgrid
posted

I have bound a webcombo to a ultrawebgrid. 

 

webcombo.DataSource = CustomerDataTable;

webCombo.DataTextField = "CustomerName";

webCombo.DataValueField = "CustomerName";

 

webcombo.DataBind();

I am able to see the webcombo and all the columns associated to it. Can you tell me how to retrieve its value. Like say for example

Customername, city, state, Zip in my webcombo.

 

How do I retrieve the values of selected city, state from webcombo wile saving it to the database.

If we can retrieve the city and state information, Is there a way to hide the Zip. I just need this value only to save to the database but would not like to show it to the user>

 

Any suggestions please

 

 

Parents Reply Children