Click here to Skip to main content
15,894,291 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: adding image in side a project folder Pin
sashidhar31-Aug-09 21:36
sashidhar31-Aug-09 21:36 
Questionthe two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Ritu_1631-Aug-09 20:55
Ritu_1631-Aug-09 20:55 
AnswerRe: the two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Christian Graus31-Aug-09 21:05
protectorChristian Graus31-Aug-09 21:05 
JokeRe: the two web services provided in the article of Sending messages in asp.net through we service ???? Pin
Arun Jacob31-Aug-09 21:24
Arun Jacob31-Aug-09 21:24 
Questiononscroll event not fire in IE 6 with select box i need to call Javascript on onscroll event Pin
anish27patel31-Aug-09 20:48
anish27patel31-Aug-09 20:48 
QuestionHow to retrieving the binary data from the database? Pin
abglorie31-Aug-09 20:25
abglorie31-Aug-09 20:25 
AnswerRe: How to retrieving the binary data from the database? Pin
Christian Graus31-Aug-09 20:30
protectorChristian Graus31-Aug-09 20:30 
Questionupdate database Pin
mylogics31-Aug-09 20:20
professionalmylogics31-Aug-09 20:20 
hii
m trying to update the column ProductID of table Product.db
i have written the following code on pageload but its giving error:
syntax error in update statement.where m i wrong.plz guide.
the code is:
protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            String str2 = "Select PID From Product Where(ProductID='PID1')";
            OleDbCommand cmd = new OleDbCommand(str2, conn);
            conn.Open();
            string m = cmd.ExecuteScalar().ToString();
            m = "PID" + m;
            conn.Close();
            string str3 = "Update Product Set(ProductID='" + m + "')Where(ProductID='PID1')";
            cmd = new OleDbCommand(str3, conn);
            conn.Open();
            cmd.ExecuteNonQuery();
            conn.Close();
            populateddl1();
            populateddl2();
        }
    }

AnswerRe: update database Pin
Christian Graus31-Aug-09 20:34
protectorChristian Graus31-Aug-09 20:34 
GeneralRe: update database Pin
mylogics31-Aug-09 20:47
professionalmylogics31-Aug-09 20:47 
GeneralRe: update database Pin
Coding C#31-Aug-09 20:57
Coding C#31-Aug-09 20:57 
GeneralRe: update database Pin
mylogics31-Aug-09 21:03
professionalmylogics31-Aug-09 21:03 
GeneralRe: update database Pin
Christian Graus31-Aug-09 21:07
protectorChristian Graus31-Aug-09 21:07 
GeneralRe: update database Pin
Christian Graus31-Aug-09 21:03
protectorChristian Graus31-Aug-09 21:03 
JokeRe: update database Pin
Greg Chelstowski31-Aug-09 21:33
Greg Chelstowski31-Aug-09 21:33 
GeneralRe: update database Pin
Christian Graus1-Sep-09 12:16
protectorChristian Graus1-Sep-09 12:16 
QuestionOnClientClick Event Pin
KhandelwalA31-Aug-09 20:19
KhandelwalA31-Aug-09 20:19 
AnswerRe: OnClientClick Event Pin
Christian Graus31-Aug-09 20:35
protectorChristian Graus31-Aug-09 20:35 
AnswerRe: OnClientClick Event Pin
Vimalsoft(Pty) Ltd31-Aug-09 21:24
professionalVimalsoft(Pty) Ltd31-Aug-09 21:24 
QuestionDeployment of project in asp.net Pin
ritasaumya31-Aug-09 20:05
ritasaumya31-Aug-09 20:05 
AnswerRe: Deployment of project in asp.net Pin
sashidhar31-Aug-09 20:11
sashidhar31-Aug-09 20:11 
AnswerRe: Deployment of project in asp.net Pin
Christian Graus31-Aug-09 20:15
protectorChristian Graus31-Aug-09 20:15 
AnswerRe: Deployment of project in asp.net Pin
Vimalsoft(Pty) Ltd31-Aug-09 21:27
professionalVimalsoft(Pty) Ltd31-Aug-09 21:27 
AnswerRe: Deployment of project in asp.net Pin
ncsubbu31-Aug-09 22:30
professionalncsubbu31-Aug-09 22:30 
QuestionPlease explain Pin
ME_Learner31-Aug-09 19:51
ME_Learner31-Aug-09 19:51 

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.