Click here to Skip to main content
15,911,890 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp.net global functions Pin
N a v a n e e t h10-Sep-07 1:58
N a v a n e e t h10-Sep-07 1:58 
AnswerRe: asp.net global functions Pin
N a v a n e e t h10-Sep-07 1:56
N a v a n e e t h10-Sep-07 1:56 
QuestionHow to redirect Pin
bhattiprolu10-Sep-07 1:33
bhattiprolu10-Sep-07 1:33 
AnswerRe: How to redirect Pin
abglorie10-Sep-07 1:38
abglorie10-Sep-07 1:38 
AnswerRe: How to redirect Pin
Vasudevan Deepak Kumar10-Sep-07 2:07
Vasudevan Deepak Kumar10-Sep-07 2:07 
QuestionGet Click event of flash object. Pin
mmSoni10-Sep-07 1:26
mmSoni10-Sep-07 1:26 
Questionasp dot net - session state Pin
abglorie10-Sep-07 1:20
abglorie10-Sep-07 1:20 
AnswerRe: asp dot net - session state Pin
oceanexplorer10-Sep-07 2:36
oceanexplorer10-Sep-07 2:36 
Hi,

You may want to look more into using a datareader for this type of usuage if your wanting to cycle through a record at a time.

An SqlDataReader sits in the System.Data.SqlClient namespace.

You call a read by something like this (this isn't perfect code as I work in c#!)

SqlConnectionconnection = newSqlConnection("myconnectionstringhere")
Dim command As SqlCommand = newSqlCommand("SELECT * FROM Customers", connection)
connection.Open()
Dim data As SqlDataReader = command.ExecuteReader()
data.read()

The Data.Read method will advance and retrieve the next record. Remember to close the connection once your done with it.

Do a search on google for SqlDateReader and you will get information on it's usage back.

Regards

Paul

QuestionIframe Pin
kmanisha10-Sep-07 1:12
kmanisha10-Sep-07 1:12 
AnswerRe: Iframe Pin
N a v a n e e t h10-Sep-07 1:53
N a v a n e e t h10-Sep-07 1:53 
Questionimage on right side treeview Pin
red27man10-Sep-07 1:03
red27man10-Sep-07 1:03 
QuestionDoubt in Dataview filter options Pin
jayarajmrj10-Sep-07 0:43
jayarajmrj10-Sep-07 0:43 
AnswerRe: Doubt in Dataview filter options Pin
John-ph10-Sep-07 1:45
John-ph10-Sep-07 1:45 
Questionpopup window Pin
saravanan0510-Sep-07 0:43
saravanan0510-Sep-07 0:43 
AnswerRe: popup window Pin
John-ph10-Sep-07 1:13
John-ph10-Sep-07 1:13 
AnswerRe: popup window Pin
N a v a n e e t h10-Sep-07 1:51
N a v a n e e t h10-Sep-07 1:51 
QuestionHow to insert HTML string (with tags) in word and display as html Pin
here2learn10-Sep-07 0:33
here2learn10-Sep-07 0:33 
Questionhow do i store news articles? Pin
marvc19-Sep-07 23:46
marvc19-Sep-07 23:46 
Questionprevious page is error but still work.. Pin
hardyyanto9-Sep-07 23:39
hardyyanto9-Sep-07 23:39 
AnswerRe: previous page is error but still work.. Pin
John-ph10-Sep-07 0:37
John-ph10-Sep-07 0:37 
GeneralRe: previous page is error but still work.. Pin
hardyyanto10-Sep-07 5:03
hardyyanto10-Sep-07 5:03 
Questionexcel not working uniformly across machines with same os Pin
S Palip9-Sep-07 23:11
S Palip9-Sep-07 23:11 
Questionmake procedure to check balance > or < totalcost Pin
hardyyanto9-Sep-07 23:03
hardyyanto9-Sep-07 23:03 
AnswerRe: make procedure to check balance > or < totalcost Pin
John-ph10-Sep-07 1:27
John-ph10-Sep-07 1:27 
GeneralRe: make procedure to check balance > or < totalcost Pin
hardyyanto10-Sep-07 5:27
hardyyanto10-Sep-07 5:27 

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.