Click here to Skip to main content
15,907,281 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Redirection problem Pin
Krishna Varadharajan29-Oct-07 23:56
Krishna Varadharajan29-Oct-07 23:56 
QuestionRepeatColumn(gridview and datalist) Pin
M.V29-Oct-07 23:30
M.V29-Oct-07 23:30 
QuestionProblem with gridview again Pin
Zoltan Aszalos29-Oct-07 23:29
Zoltan Aszalos29-Oct-07 23:29 
QuestionDisplay data as soon as it comes Pin
sood_is_in29-Oct-07 23:26
sood_is_in29-Oct-07 23:26 
AnswerRe: Display data as soon as it comes Pin
pmarfleet29-Oct-07 23:37
pmarfleet29-Oct-07 23:37 
GeneralRe: Display data as soon as it comes Pin
sood_is_in29-Oct-07 23:45
sood_is_in29-Oct-07 23:45 
GeneralRe: Display data as soon as it comes Pin
pmarfleet29-Oct-07 23:59
pmarfleet29-Oct-07 23:59 
GeneralRe: Display data as soon as it comes Pin
sood_is_in30-Oct-07 0:08
sood_is_in30-Oct-07 0:08 
yes Paul it means 100,000

Well i had seen this working in my current asp application and i m trying to replicate the same in .net but struggling with it.

i can tell u how it is working in asp application.
below is the code of how it is implemented in asp


response.buffer = false '


Sub DisplayRecords()


sql = "spPatientSelectList "
set oRs = oConn.execute(sql)
if (oRs.eof) then
response.write "No record found" & vbCrLf
end if
do while not oRs.eof
response.write ""


response.write "" & oRs("vchMedRecNum") & ""
response.write "" & oRs("vchPatientFirstName") & ""
response.write "" & oRs("vchPatientLastName") & ""
response.write "" & oRs("dtPatientDateOfBirth") & ""
response.write "" & oRs("vchPatientContactNumber") & ""
response.write "" & oRs("vchPatientSSN") & ""

response.write "" & vbCrLf
oRs.moveNext
loop
oRs.close




U see the key in the above code is
response.buffer=false.

but implementing the same in dotnet doesn't seems to help.





Thanx in Advance

GeneralRe: Display data as soon as it comes Pin
pmarfleet30-Oct-07 0:26
pmarfleet30-Oct-07 0:26 
GeneralRe: Display data as soon as it comes Pin
sood_is_in30-Oct-07 0:32
sood_is_in30-Oct-07 0:32 
GeneralRe: Display data as soon as it comes Pin
pmarfleet30-Oct-07 2:30
pmarfleet30-Oct-07 2:30 
Questiongridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:14
Sonia Gupta29-Oct-07 23:14 
AnswerRe: gridview calculations in java-script Pin
soni uma29-Oct-07 23:28
soni uma29-Oct-07 23:28 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:42
Sonia Gupta29-Oct-07 23:42 
GeneralRe: gridview calculations in java-script Pin
soni uma30-Oct-07 0:41
soni uma30-Oct-07 0:41 
AnswerRe: gridview calculations in java-script Pin
InsDev29-Oct-07 23:32
InsDev29-Oct-07 23:32 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:43
Sonia Gupta29-Oct-07 23:43 
GeneralRe: gridview calculations in java-script Pin
InsDev29-Oct-07 23:47
InsDev29-Oct-07 23:47 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta29-Oct-07 23:52
Sonia Gupta29-Oct-07 23:52 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:02
InsDev30-Oct-07 0:02 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:07
Sonia Gupta30-Oct-07 0:07 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:09
InsDev30-Oct-07 0:09 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:13
Sonia Gupta30-Oct-07 0:13 
GeneralRe: gridview calculations in java-script Pin
InsDev30-Oct-07 0:16
InsDev30-Oct-07 0:16 
GeneralRe: gridview calculations in java-script Pin
Sonia Gupta30-Oct-07 0:18
Sonia Gupta30-Oct-07 0:18 

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.