Click here to Skip to main content
15,924,828 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: datagrid doubt Pin
Vipin.d30-Jul-07 22:13
Vipin.d30-Jul-07 22:13 
QuestionForm Authentication cookie Pin
sandeep kumar pundhir30-Jul-07 20:17
sandeep kumar pundhir30-Jul-07 20:17 
GeneralRe: Form Authentication cookie Pin
T.EDY30-Jul-07 21:12
T.EDY30-Jul-07 21:12 
Questionhow can I add dropdown list to DataView and FormView Pin
ksaw12330-Jul-07 20:11
ksaw12330-Jul-07 20:11 
QuestionHow to store data from Listbox Pin
n_gchaitra30-Jul-07 20:10
n_gchaitra30-Jul-07 20:10 
AnswerRe: How to store data from Listbox Pin
Christian Graus30-Jul-07 20:25
protectorChristian Graus30-Jul-07 20:25 
GeneralRe: How to store data from Listbox Pin
n_gchaitra30-Jul-07 20:32
n_gchaitra30-Jul-07 20:32 
AnswerRe: How to store data from Listbox Pin
daniel__c30-Jul-07 20:30
daniel__c30-Jul-07 20:30 
You are getting an error because the ListBox2.Items.ToString() function just returns the text System.Web.UI.WebControls.ListItemCollection - because that is what you are referencing....it's just a collection.

You would need to loop through each of the ListItems and get out the text value of each and run that as a seperate insert...i.e.

foreach(ListItem item in ListBox2.Items){
str = "insert into a_software (soft)values('" & item.Text & "')"
//then run the insert
}

that would be a way to do it using your current code, or build up a collection of inserts and run them all at once (not sure if you can do that with ExecuteNonQuery() though) - running everything at once would definitely be the better option.
GeneralRe: How to store data from Listbox Pin
n_gchaitra30-Jul-07 20:51
n_gchaitra30-Jul-07 20:51 
GeneralRe: How to store data from Listbox Pin
helelark12330-Jul-07 21:00
helelark12330-Jul-07 21:00 
GeneralRe: How to store data from Listbox Pin
n_gchaitra31-Jul-07 0:33
n_gchaitra31-Jul-07 0:33 
GeneralRe: How to store data from Listbox Pin
n_gchaitra1-Aug-07 0:46
n_gchaitra1-Aug-07 0:46 
AnswerRe: How to store data from Listbox Pin
koolprasad200330-Jul-07 20:33
professionalkoolprasad200330-Jul-07 20:33 
GeneralRe: How to store data from Listbox Pin
T.EDY30-Jul-07 21:27
T.EDY30-Jul-07 21:27 
GeneralRe: How to store data from Listbox Pin
n_gchaitra31-Jul-07 0:35
n_gchaitra31-Jul-07 0:35 
GeneralRe: How to store data from Listbox Pin
koolprasad200331-Jul-07 1:36
professionalkoolprasad200331-Jul-07 1:36 
GeneralRe: How to store data from Listbox Pin
n_gchaitra31-Jul-07 1:44
n_gchaitra31-Jul-07 1:44 
GeneralRe: How to store data from Listbox Pin
n_gchaitra1-Aug-07 1:24
n_gchaitra1-Aug-07 1:24 
AnswerRe: How to store data from Listbox Pin
T.EDY30-Jul-07 21:22
T.EDY30-Jul-07 21:22 
QuestionPlease help me? Pin
v.surendrakumar30-Jul-07 20:07
v.surendrakumar30-Jul-07 20:07 
AnswerRe: Please help me? Pin
Christian Graus30-Jul-07 20:27
protectorChristian Graus30-Jul-07 20:27 
Questionsuggestion Pin
Yulianto.30-Jul-07 19:43
Yulianto.30-Jul-07 19:43 
Questionweb deployment in asp.net 2005 Pin
Sonia Gupta30-Jul-07 19:39
Sonia Gupta30-Jul-07 19:39 
AnswerRe: web deployment in asp.net 2005 Pin
N a v a n e e t h30-Jul-07 20:10
N a v a n e e t h30-Jul-07 20:10 
QuestionrRetaining Data in web form after transfer to another form and back Pin
Sakshi Smriti30-Jul-07 18:58
Sakshi Smriti30-Jul-07 18:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.