Click here to Skip to main content
15,881,852 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWeb Service: consume java web service in asp.net Pin
Member 394398830-Oct-12 2:25
Member 394398830-Oct-12 2:25 
QuestionDevelop Facebook application with 'asp.net', not with 'php' Pin
ThetaClear30-Oct-12 1:52
ThetaClear30-Oct-12 1:52 
AnswerRe: Develop Facebook application with 'asp.net', not with 'php' Pin
Eddy Vluggen30-Oct-12 3:26
professionalEddy Vluggen30-Oct-12 3:26 
QuestionASP REPEATER Pin
fahad.130-Oct-12 1:19
fahad.130-Oct-12 1:19 
AnswerRe: ASP REPEATER Pin
Eddy Vluggen30-Oct-12 3:28
professionalEddy Vluggen30-Oct-12 3:28 
AnswerRe: ASP REPEATER Pin
Guptha Ch30-Oct-12 5:49
Guptha Ch30-Oct-12 5:49 
AnswerRe: ASP REPEATER Pin
jkirkerx31-Oct-12 13:13
professionaljkirkerx31-Oct-12 13:13 
QuestionDropdownlist selected item text couldnt save into database Pin
Mathan Sivanantham30-Oct-12 0:52
Mathan Sivanantham30-Oct-12 0:52 
I am using dropdownlist in c# asp.net. Here one dropdown list getting data's from database and its having required field validator also.,
My ASP design coding is.,

<asp:dropdownlist id="zonename" runat="server" width="195px" tooltip="Select Zone">
<asp:requiredfieldvalidator id="RequiredFieldValidator1" runat="server" controltovalidate="zonename" errormessage="Zone Name Required" initialvalue="Select Zone">
And MY C# coding is....,

da = new MySqlDataAdapter("select name from zone", mysqlcon);
dt = new DataTable();
da.Fill(dt);
zonename.Items.Clear();
zonename.Items.Add("Select Zone");

for (int i = 0; i <= dt.Rows.Count - 1; i++)
{
zonename.Items.Add(dt.Rows[i]["name"].ToString());
}
mysqlcon.Close();

WHEN I AM SAVING THIS DROPDOWNLIST TEXT TO THE DATABASE.,THE WORD "Select Zone" ONLY GOING TO THE DATABASE.

MY INSERT QUERY IS.,

"insert into TABLENAME(zonename) values('"+zonename.text+"')";

Here i couldnt understand what is going on.,i need to save the selected text to the database. If anybody know how to solve this problem, Please let me know.,

Thanks.,
AnswerRe: Dropdownlist selected item text couldnt save into database Pin
Richard MacCutchan30-Oct-12 1:40
mveRichard MacCutchan30-Oct-12 1:40 
AnswerRe: Dropdownlist selected item text couldnt save into database Pin
Matt U.30-Oct-12 8:21
Matt U.30-Oct-12 8:21 
AnswerRe: Dropdownlist selected item text couldnt save into database Pin
jkirkerx31-Oct-12 13:15
professionaljkirkerx31-Oct-12 13:15 
AnswerClassic ASP - Prevent Cache from being stored Pin
diegosendra29-Oct-12 18:26
diegosendra29-Oct-12 18:26 
SuggestionRe: Classic ASP - Prevent Cache from being stored Pin
Eddy Vluggen30-Oct-12 3:32
professionalEddy Vluggen30-Oct-12 3:32 
GeneralRe: Classic ASP - Prevent Cache from being stored Pin
diegosendra30-Oct-12 4:49
diegosendra30-Oct-12 4:49 
GeneralRe: Classic ASP - Prevent Cache from being stored Pin
diegosendra30-Oct-12 7:07
diegosendra30-Oct-12 7:07 
GeneralRe: Classic ASP - Prevent Cache from being stored Pin
Eddy Vluggen30-Oct-12 10:21
professionalEddy Vluggen30-Oct-12 10:21 
QuestionTNS:address already in use Exception Pin
sjdavy29-Oct-12 9:36
sjdavy29-Oct-12 9:36 
QuestionEvent not working with ParseControl method Pin
Akshay Lakhmani28-Oct-12 21:46
Akshay Lakhmani28-Oct-12 21:46 
AnswerRe: Event not working with ParseControl method Pin
Ashish Raj Srivastava29-Oct-12 9:20
Ashish Raj Srivastava29-Oct-12 9:20 
GeneralRe: Event not working with ParseControl method Pin
Akshay Lakhmani29-Oct-12 18:08
Akshay Lakhmani29-Oct-12 18:08 
Question51degrees not redirecting! Pin
Jassim Rahma28-Oct-12 3:31
Jassim Rahma28-Oct-12 3:31 
QuestionIsMobile not determining mobile! Pin
Jassim Rahma26-Oct-12 8:42
Jassim Rahma26-Oct-12 8:42 
AnswerRe: IsMobile not determining mobile! Pin
Vasudevan Deepak Kumar26-Oct-12 8:57
Vasudevan Deepak Kumar26-Oct-12 8:57 
AnswerRe: IsMobile not determining mobile! Pin
jkirkerx26-Oct-12 12:19
professionaljkirkerx26-Oct-12 12:19 
QuestionCalculator App using Workflow Foundation in .net 4.0 Pin
Prasyee26-Oct-12 2:11
Prasyee26-Oct-12 2:11 

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.