Click here to Skip to main content
15,910,603 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDropdownlist select only first value Pin
haleemasher9-Sep-09 18:54
haleemasher9-Sep-09 18:54 
AnswerRe: Dropdownlist select only first value Pin
Christian Graus9-Sep-09 18:59
protectorChristian Graus9-Sep-09 18:59 
GeneralRe: Dropdownlist select only first value Pin
haleemasher9-Sep-09 19:07
haleemasher9-Sep-09 19:07 
GeneralRe: Dropdownlist select only first value Pin
Christian Graus9-Sep-09 19:08
protectorChristian Graus9-Sep-09 19:08 
GeneralRe: Dropdownlist select only first value Pin
N a v a n e e t h9-Sep-09 19:12
N a v a n e e t h9-Sep-09 19:12 
GeneralRe: Dropdownlist select only first value Pin
Christian Graus9-Sep-09 19:16
protectorChristian Graus9-Sep-09 19:16 
GeneralRe: Dropdownlist select only first value Pin
Arun Jacob9-Sep-09 23:21
Arun Jacob9-Sep-09 23:21 
QuestionDB Exception Error converting data type varchar to numeric Pin
haleemasher9-Sep-09 18:12
haleemasher9-Sep-09 18:12 
i want to submit data in a database using a button (submit) while entering data i got an exceptionDB Exception Error converting data type varchar to numeric plz chk this code and help me that where i is the error.these are its data type
CouponTypeID tiny int
TransactionDate datetime
TransactionTypeID numeric(18,0)
description text
CafeMenu nvarchar(50)
SerialEnd Bigiint
SerialStart Bigint
Price int
TotalSale int



protected void btnSubmit_Click(object sender, EventArgs e)
    {
        try
        {
            ErrorMessage.Text = "";
        
string query = "insert into CouponTransaction(CouponTypeID,TransactionDate,TransactionTypeID,Description,CafeMenu,SerialStart,SerialEnd,Price,
TotalSale)values('" + ddlCType.SelectedValue.ToString() + "','"+ TxtbxDate.Text 
+"','"+ddlTtype .SelectedValue .ToString ()+"','"+TxtDes .Text +"',
'"+ddlMenu .SelectedValue+"','"+txtSFrom .Text +"','"+TxtEnd .Text +"','"+Txtprice .Text  +"','"+TxtSale .Text +"')";

DAL helper = new DAL();
            helper.ConnectionString = ConfigurationManager.AppSettings["ConnectionString"].ToString();
            int result = helper.ExecuteNonQuery(CommandType.Text, query, null);
            if (result == 1)
                ErrorMessage.Text = "Records inserted successfully";
            else
                ErrorMessage.Text = "Records could not be inserted";
            cnx.Close();
        }
        catch (Exception ex)
        {
            ErrorMessage.Text = ex.Message;
        }
    }

AnswerRe: DB Exception Error converting data type varchar to numeric Pin
Christian Graus9-Sep-09 18:24
protectorChristian Graus9-Sep-09 18:24 
AnswerRe: DB Exception Error converting data type varchar to numeric Pin
haleemasher9-Sep-09 18:47
haleemasher9-Sep-09 18:47 
GeneralRe: DB Exception Error converting data type varchar to numeric Pin
Christian Graus9-Sep-09 18:50
protectorChristian Graus9-Sep-09 18:50 
GeneralRe: DB Exception Error converting data type varchar to numeric Pin
haleemasher9-Sep-09 18:56
haleemasher9-Sep-09 18:56 
QuestionItemTemplate and EditItemTemplate, Eval and bind Pin
amittinku9-Sep-09 17:58
amittinku9-Sep-09 17:58 
AnswerRe: ItemTemplate and EditItemTemplate, Eval and bind Pin
Christian Graus9-Sep-09 18:01
protectorChristian Graus9-Sep-09 18:01 
QuestionIE8 / tabs / cookies Pin
tagyurit9-Sep-09 13:02
tagyurit9-Sep-09 13:02 
AnswerRe: IE8 / tabs / cookies Pin
Christian Graus9-Sep-09 13:17
protectorChristian Graus9-Sep-09 13:17 
QuestionTrouble deploying ASP.NET application in sub domain Pin
David Mujica9-Sep-09 10:57
David Mujica9-Sep-09 10:57 
QuestionRe: Trouble deploying ASP.NET application in sub domain Pin
Christian Graus9-Sep-09 11:14
protectorChristian Graus9-Sep-09 11:14 
AnswerRe: Trouble deploying ASP.NET application in sub domain Pin
David Mujica10-Sep-09 3:38
David Mujica10-Sep-09 3:38 
QuestionSMS is not deliver Pin
kunal naik9-Sep-09 10:55
kunal naik9-Sep-09 10:55 
AnswerRe: SMS is not deliver Pin
Christian Graus9-Sep-09 11:13
protectorChristian Graus9-Sep-09 11:13 
AnswerRe: SMS is not deliver Pin
Shahdat Hosain9-Sep-09 11:14
Shahdat Hosain9-Sep-09 11:14 
GeneralRe: SMS is not deliver Pin
Christian Graus9-Sep-09 11:15
protectorChristian Graus9-Sep-09 11:15 
AnswerRe: SMS is not deliver Pin
Abhishek Sur9-Sep-09 12:04
professionalAbhishek Sur9-Sep-09 12:04 
GeneralRe: SMS is not deliver Pin
Christian Graus9-Sep-09 12:10
protectorChristian Graus9-Sep-09 12:10 

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.