Click here to Skip to main content
15,896,442 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Setting focus to textbox Pin
eyeseetee24-Apr-08 2:50
eyeseetee24-Apr-08 2:50 
Questionnot getting data after click on button Pin
Ankit At Codeproject23-Apr-08 23:29
Ankit At Codeproject23-Apr-08 23:29 
GeneralRe: not getting data after click on button Pin
eyeseetee23-Apr-08 23:55
eyeseetee23-Apr-08 23:55 
QuestionRe: not getting data after click on button Pin
Ankit At Codeproject24-Apr-08 0:00
Ankit At Codeproject24-Apr-08 0:00 
GeneralRe: not getting data after click on button Pin
Ankit At Codeproject24-Apr-08 0:19
Ankit At Codeproject24-Apr-08 0:19 
QuestionRe: not getting data after click on button Pin
Ankit At Codeproject24-Apr-08 0:25
Ankit At Codeproject24-Apr-08 0:25 
Generaltransaction problem Pin
Kissy1623-Apr-08 23:27
Kissy1623-Apr-08 23:27 
GeneralRe: transaction problem Pin
Mark J. Miller24-Apr-08 10:26
Mark J. Miller24-Apr-08 10:26 
Dim tr As SqlTransaction
tr = sqlconn.BeginTransaction

Try
cmd = new SqlCommand("UPDATE table1 ...")
cmd.Transaction = tr
cmd.ExecuteNonQuery()

cmd = new SqlCommand("Update table2 ...")
cmd.Transaction = tr
cmd.ExecuteNonQuery()

'if you need more than 2 then continue to repeat for
'each command you must execute w/in transaction

tr.Commit()
Begin Catch
tr.Rollback()
'handle exception here
Finally
sqlconn.Close()
End Try

Mark's blog: developMENTALmadness.blogspot.com

Funniest variable name:
lLongDong - spotted in legacy code, was used to determine how long a beep should be.
- Dave Bacher

GeneralError msg: Failed to map the path '/' in file upload Pin
Member 387988123-Apr-08 23:07
Member 387988123-Apr-08 23:07 
GeneralRe: Error msg: Failed to map the path '/' in file upload Pin
samMaster23-Apr-08 23:19
samMaster23-Apr-08 23:19 
GeneralRe: Error msg: Failed to map the path '/' in file upload Pin
Member 387988123-Apr-08 23:26
Member 387988123-Apr-08 23:26 
Questionhow to find path of msi which is in Setup Pin
Piyush Vardhan Singh23-Apr-08 22:42
Piyush Vardhan Singh23-Apr-08 22:42 
AnswerRe: how to find path of msi which is in Setup Pin
eyeseetee23-Apr-08 22:53
eyeseetee23-Apr-08 22:53 
GeneralRe: how to find path of msi which is in Setup Pin
Piyush Vardhan Singh23-Apr-08 23:05
Piyush Vardhan Singh23-Apr-08 23:05 
GeneralIndexing search.... Pin
Moghan23-Apr-08 22:33
Moghan23-Apr-08 22:33 
GeneralRe: Indexing search.... Pin
eyeseetee23-Apr-08 22:52
eyeseetee23-Apr-08 22:52 
GeneralRe: Indexing search.... Pin
Moghan23-Apr-08 23:11
Moghan23-Apr-08 23:11 
GeneralRe: Indexing search.... Pin
Harini N K23-Apr-08 22:54
Harini N K23-Apr-08 22:54 
GeneralRe: Indexing search.... Pin
Moghan23-Apr-08 23:08
Moghan23-Apr-08 23:08 
GeneralRe: Indexing search.... Pin
Harini N K23-Apr-08 23:14
Harini N K23-Apr-08 23:14 
GeneralRe: Indexing search.... Pin
Harini N K23-Apr-08 23:19
Harini N K23-Apr-08 23:19 
GeneralRe: Indexing search.... Pin
Moghan23-Apr-08 23:39
Moghan23-Apr-08 23:39 
Generalsize of page Pin
ptvce23-Apr-08 22:03
ptvce23-Apr-08 22:03 
GeneralRe: size of page Pin
eyeseetee23-Apr-08 22:30
eyeseetee23-Apr-08 22:30 
GeneralRe: size of page Pin
ptvce23-Apr-08 23:48
ptvce23-Apr-08 23:48 

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.