Click here to Skip to main content
15,921,959 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ajax calendar control in visual studio 2005 Pin
uglyeyes8-Jan-08 11:15
uglyeyes8-Jan-08 11:15 
GeneralRe: ajax calendar control in visual studio 2005 Pin
Michael Sync8-Jan-08 18:38
Michael Sync8-Jan-08 18:38 
GeneralRe: ajax calendar control in visual studio 2005 Pin
uglyeyes15-Jan-08 14:54
uglyeyes15-Jan-08 14:54 
GeneralRe: ajax calendar control in visual studio 2005 Pin
Michael Sync15-Jan-08 15:32
Michael Sync15-Jan-08 15:32 
GeneralTo show print dialog box in web application Pin
Nagraj Naik7-Jan-08 18:53
Nagraj Naik7-Jan-08 18:53 
GeneralRe: To show print dialog box in web application Pin
Michael Sync7-Jan-08 19:11
Michael Sync7-Jan-08 19:11 
GeneralRe: To show print dialog box in web application Pin
Nagraj Naik7-Jan-08 19:34
Nagraj Naik7-Jan-08 19:34 
GeneralInserting Values Pin
Imranlogi7-Jan-08 18:30
Imranlogi7-Jan-08 18:30 
Could any one please help me out. Actually i want to insert values from two different text boxes into a single column of database as different rows in C#, it may be MySql or SQL Server Database. Currently what i am doing is i am inserting values like this

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();
}

In this type of code i can not insert values from two different text boxes into a single column of Database Table.
Please Help..

Imran

GeneralRe: Inserting Values Pin
Christian Graus7-Jan-08 18:43
protectorChristian Graus7-Jan-08 18:43 
Generalcreating member page Pin
heatwave037-Jan-08 18:14
heatwave037-Jan-08 18:14 
GeneralRe: creating member page Pin
Michael Sync7-Jan-08 19:12
Michael Sync7-Jan-08 19:12 
GeneralExport Grid to Excel Pin
Sebastian T Xavier7-Jan-08 17:21
Sebastian T Xavier7-Jan-08 17:21 
GeneralRepeater allignment.!!! Pin
Krishna Varadharajan7-Jan-08 16:54
Krishna Varadharajan7-Jan-08 16:54 
GeneralRe: Repeater allignment.!!! Pin
Christian Graus7-Jan-08 17:10
protectorChristian Graus7-Jan-08 17:10 
Questionlocation tags for Forms authentication Pin
tonymathewt7-Jan-08 16:19
professionaltonymathewt7-Jan-08 16:19 
Questionget serial hard disk asp.net Pin
AnhTin7-Jan-08 15:24
AnhTin7-Jan-08 15:24 
GeneralRe: get serial hard disk asp.net Pin
Christian Graus7-Jan-08 17:10
protectorChristian Graus7-Jan-08 17:10 
GeneralRe: get serial hard disk asp.net Pin
AnhTin7-Jan-08 19:29
AnhTin7-Jan-08 19:29 
GeneralRe: get serial hard disk asp.net Pin
Christian Graus7-Jan-08 20:16
protectorChristian Graus7-Jan-08 20:16 
GeneralRe: get serial hard disk asp.net Pin
Abhijit Jana7-Jan-08 18:36
professionalAbhijit Jana7-Jan-08 18:36 
QuestionHow to Construct full absolute URL from Relative URL ? [modified] Pin
Nadia Monalisa7-Jan-08 9:20
Nadia Monalisa7-Jan-08 9:20 
AnswerRe: How to Construct full absolute URL from Relative URL ? Pin
Michael Sync7-Jan-08 19:15
Michael Sync7-Jan-08 19:15 
GeneralSetting a data source's parameter to null Pin
Fernando A. Gomez F.7-Jan-08 8:47
Fernando A. Gomez F.7-Jan-08 8:47 
GeneralRe: Setting a data source's parameter to null Pin
Michael Sync7-Jan-08 19:19
Michael Sync7-Jan-08 19:19 
GeneralSimple doubt in google search in HTML Pin
Senthil S7-Jan-08 5:39
Senthil S7-Jan-08 5:39 

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.