Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# execute reader to liste Pin
jschell12-Jul-12 10:24
jschell12-Jul-12 10:24 
GeneralRe: C# execute reader to liste Pin
Eddy Vluggen12-Jul-12 9:17
professionalEddy Vluggen12-Jul-12 9:17 
AnswerRe: C# execute reader to liste Pin
Luc Pattyn12-Jul-12 9:30
sitebuilderLuc Pattyn12-Jul-12 9:30 
GeneralRe: C# execute reader to liste Pin
coucou00812-Jul-12 22:43
coucou00812-Jul-12 22:43 
AnswerRe: C# execute reader to liste Pin
Matt T Heffron13-Jul-12 8:08
professionalMatt T Heffron13-Jul-12 8:08 
Questionhow to save data Pin
shubham salwan12-Jul-12 1:56
shubham salwan12-Jul-12 1:56 
AnswerRe: how to save data Pin
Eddy Vluggen12-Jul-12 2:28
professionalEddy Vluggen12-Jul-12 2:28 
AnswerRe: how to save data Pin
KSaiPrasad12-Jul-12 3:09
KSaiPrasad12-Jul-12 3:09 
C#
protected void btnSave_Click(object sender, EventArgs e)

{
   string connString = "Data Source=ServerName;Initial Catalog=DbName;Integrated Security=True"; SqlConnection conn = new    SqlConnection(connString);
   conn.Open();
     String sql = "INSERT INTO CustomerInfo(FirstName, LastName, Address, Order, Quantity) values ('Sai', 'Prasad',    'Hyderabad', 1, 100)";
SqlCommand cmd = new SqlCommand(sql,conn);
     cmd.ExecuteNonQuery();

   conn.Close();

}

GeneralRe: how to save data PinPopular
PIEBALDconsult12-Jul-12 3:55
mvePIEBALDconsult12-Jul-12 3:55 
GeneralRe: how to save data Pin
shubham salwan12-Jul-12 8:43
shubham salwan12-Jul-12 8:43 
GeneralRe: how to save data Pin
PIEBALDconsult13-Jul-12 3:49
mvePIEBALDconsult13-Jul-12 3:49 
GeneralRe: how to save data Pin
shubham salwan12-Jul-12 8:26
shubham salwan12-Jul-12 8:26 
GeneralRe: how to save data Pin
KSaiPrasad12-Jul-12 19:15
KSaiPrasad12-Jul-12 19:15 
GeneralRe: how to save data Pin
shubham salwan12-Jul-12 20:11
shubham salwan12-Jul-12 20:11 
AnswerRe: how to save data Pin
Simon_Whale12-Jul-12 3:17
Simon_Whale12-Jul-12 3:17 
AnswerRe: how to save data Pin
BobJanova12-Jul-12 4:08
BobJanova12-Jul-12 4:08 
Questionconnectivity with database Pin
shubham salwan12-Jul-12 1:53
shubham salwan12-Jul-12 1:53 
AnswerRe: connectivity with database Pin
Abhinav S12-Jul-12 2:52
Abhinav S12-Jul-12 2:52 
AnswerRe: connectivity with database Pin
Dave Kreskowiak12-Jul-12 3:41
mveDave Kreskowiak12-Jul-12 3:41 
GeneralRe: connectivity with database Pin
shubham salwan12-Jul-12 8:16
shubham salwan12-Jul-12 8:16 
GeneralRe: connectivity with database Pin
Wes Aday12-Jul-12 8:43
professionalWes Aday12-Jul-12 8:43 
GeneralRe: connectivity with database Pin
shubham salwan12-Jul-12 9:38
shubham salwan12-Jul-12 9:38 
GeneralRe: connectivity with database Pin
Wes Aday12-Jul-12 10:06
professionalWes Aday12-Jul-12 10:06 
JokeRe: connectivity with database Pin
Paul Conrad12-Jul-12 12:13
professionalPaul Conrad12-Jul-12 12:13 
GeneralRe: connectivity with database Pin
Wes Aday12-Jul-12 13:16
professionalWes Aday12-Jul-12 13:16 

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.