Click here to Skip to main content
15,922,166 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralSharePoint web part Pin
Blumen7-Jan-08 23:16
Blumen7-Jan-08 23:16 
GeneralInserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Imranlogi7-Jan-08 23:10
Imranlogi7-Jan-08 23:10 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Declan Bright7-Jan-08 23:41
Declan Bright7-Jan-08 23:41 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Imranlogi7-Jan-08 23:58
Imranlogi7-Jan-08 23:58 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Declan Bright8-Jan-08 0:38
Declan Bright8-Jan-08 0:38 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Imranlogi8-Jan-08 1:04
Imranlogi8-Jan-08 1:04 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Declan Bright8-Jan-08 1:21
Declan Bright8-Jan-08 1:21 
GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Imranlogi8-Jan-08 1:41
Imranlogi8-Jan-08 1:41 
Ok thanks a lot, i will try. Currently i have written code like this to insert record

private void InsertRecord()
{
try
{
string strInsert = "insert into Quotation" +
"(JobNum, CompNameAdd)"
+ "values('" + this.txtJobNum.Text + "','"
+ this.txtCompNameAdd.Text + "')";
MySqlCommand command = new MySqlCommand(strInsert, Quotation.con);
Quotation.dQuotationAdapter.InsertCommand = command;
//Insert new record
Quotation.dQuotationAdapter.InsertCommand.ExecuteNonQuery();
MessageBox.Show("New Record Saved Successfully");
RefreshRecord();
ClearTextBoxes();
this.txtCompNameAdd.Focus();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}

But in this code i can not insert values from two text boxes into a single column
Thanks

Imran

GeneralRe: Inserting Values from 2 Different Text Boxes into a Single Column as different rows Pin
Declan Bright8-Jan-08 3:30
Declan Bright8-Jan-08 3:30 
Generaluploading files from visual web developer express edition Pin
eyeseetee7-Jan-08 23:03
eyeseetee7-Jan-08 23:03 
GeneralRe: uploading files from visual web developer express edition Pin
Declan Bright7-Jan-08 23:08
Declan Bright7-Jan-08 23:08 
GeneralRe: uploading files from visual web developer express edition Pin
eyeseetee7-Jan-08 23:14
eyeseetee7-Jan-08 23:14 
GeneralRe: uploading files from visual web developer express edition Pin
Declan Bright7-Jan-08 23:35
Declan Bright7-Jan-08 23:35 
GeneralRe: uploading files from visual web developer express edition Pin
eyeseetee7-Jan-08 23:41
eyeseetee7-Jan-08 23:41 
GeneralRe: uploading files from visual web developer express edition Pin
Declan Bright8-Jan-08 0:49
Declan Bright8-Jan-08 0:49 
GeneralSQL Exception Pin
SreejithAchutan7-Jan-08 22:53
SreejithAchutan7-Jan-08 22:53 
GeneralRe: SQL Exception Pin
SreejithAchutan7-Jan-08 23:31
SreejithAchutan7-Jan-08 23:31 
GeneralRe: SQL Exception Pin
janet20087-Jan-08 23:53
janet20087-Jan-08 23:53 
GeneralRe: SQL Exception Pin
SreejithAchutan8-Jan-08 0:39
SreejithAchutan8-Jan-08 0:39 
GeneralRe: SQL Exception Pin
SreejithAchutan8-Jan-08 17:09
SreejithAchutan8-Jan-08 17:09 
QuestionHow to Add items from DropDown to the Exiting Main Menu Pin
mrgaddam7-Jan-08 22:36
mrgaddam7-Jan-08 22:36 
AnswerRe: How to Add items from DropDown to the Exiting Main Menu Pin
Christian Graus7-Jan-08 22:52
protectorChristian Graus7-Jan-08 22:52 
GeneralRe: How to Add items from DropDown to the Menu in C# Pin
mrgaddam7-Jan-08 23:07
mrgaddam7-Jan-08 23:07 
AnswerRe: How to Add items from DropDown to the Exiting Main Menu Pin
Declan Bright7-Jan-08 23:04
Declan Bright7-Jan-08 23:04 
GeneralManage COM with thread Pin
Piyush Vardhan Singh7-Jan-08 22:30
Piyush Vardhan Singh7-Jan-08 22:30 

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.