Click here to Skip to main content
15,888,802 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionReading and showing a Note pad File content Pin
Satish_S26-Jul-08 2:34
Satish_S26-Jul-08 2:34 
AnswerRe: Reading and showing a Note pad File content Pin
Paul Conrad26-Jul-08 5:13
professionalPaul Conrad26-Jul-08 5:13 
AnswerRe: Reading and showing a Note pad File content Pin
Guffa26-Jul-08 5:47
Guffa26-Jul-08 5:47 
GeneralRe: Reading and showing a Note pad File content Pin
Paul Conrad26-Jul-08 5:55
professionalPaul Conrad26-Jul-08 5:55 
GeneralRe: Reading and showing a Note pad File content Pin
Satish_S27-Jul-08 21:51
Satish_S27-Jul-08 21:51 
GeneralRe: Reading and showing a Note pad File content Pin
Guffa27-Jul-08 22:08
Guffa27-Jul-08 22:08 
GeneralRe: Reading and showing a Note pad File content Pin
Satish_S27-Jul-08 22:43
Satish_S27-Jul-08 22:43 
GeneralRe: Reading and showing a Note pad File content Pin
Satish_S27-Jul-08 22:49
Satish_S27-Jul-08 22:49 
 Sub FileRead()
        Dim fileread As String
        fileread = Server.MapPath("Task17072008.txt")
        Dim filestream As StreamReader
        filestream = File.OpenText(fileread)
        Dim readcontents As String
        readcontents = filestream.ReadToEnd

        Dim textdelimiter As String
        textdelimiter = ","
        Dim splitout = Split(readcontents, textdelimiter)

        Label1.Text = readcontents & "<br>"

        Dim i As Integer

        For i = 0 To UBound(splitout)
            Label2.Text &= splitout(i) + "<br>"
            Application.DoEvents()


        Next
        filestream.Close()


    End Sub
</br></br>


showing doevents is not a member of system.web.HTTPApplicationState.
GeneralRe: Reading and showing a Note pad File content Pin
Guffa27-Jul-08 23:55
Guffa27-Jul-08 23:55 
QuestionHow to store multiple selected values of listbox into sql server 2000 column Pin
Rameez Raja26-Jul-08 1:08
Rameez Raja26-Jul-08 1:08 
AnswerRe: How to store multiple selected values of listbox into sql server 2000 column Pin
Abhijit Jana26-Jul-08 1:30
professionalAbhijit Jana26-Jul-08 1:30 
AnswerRe: How to store multiple selected values of listbox into sql server 2000 column Pin
BhadeliaImran26-Jul-08 2:01
BhadeliaImran26-Jul-08 2:01 
GeneralRe: How to store multiple selected values of listbox into sql server 2000 column Pin
Rameez Raja26-Jul-08 19:51
Rameez Raja26-Jul-08 19:51 
QuestionTextbox Focus problem [modified] Pin
amit201126-Jul-08 0:41
amit201126-Jul-08 0:41 
Questionwebserice on LAN/WAN Pin
balu1234526-Jul-08 0:41
balu1234526-Jul-08 0:41 
AnswerRe: webserice on LAN/WAN Pin
Reza Raad26-Jul-08 17:04
Reza Raad26-Jul-08 17:04 
Questionwebplanner Pin
Member 538259225-Jul-08 23:45
Member 538259225-Jul-08 23:45 
AnswerRe: webplanner Pin
Paul Conrad26-Jul-08 5:57
professionalPaul Conrad26-Jul-08 5:57 
QuestionHow To run application on Intranet Pin
raushan_925-Jul-08 22:40
raushan_925-Jul-08 22:40 
AnswerRe: How To run application on Intranet Pin
Abhijit Jana25-Jul-08 23:57
professionalAbhijit Jana25-Jul-08 23:57 
AnswerRe: How To run application on Intranet Pin
Guffa26-Jul-08 7:19
Guffa26-Jul-08 7:19 
Questiondatagrid problem Pin
Kissy1625-Jul-08 20:25
Kissy1625-Jul-08 20:25 
AnswerRe: datagrid problem Pin
Abhijit Jana25-Jul-08 21:10
professionalAbhijit Jana25-Jul-08 21:10 
GeneralRe: datagrid problem Pin
Kissy1625-Jul-08 21:14
Kissy1625-Jul-08 21:14 
GeneralRe: datagrid problem Pin
Abhijit Jana25-Jul-08 21:25
professionalAbhijit Jana25-Jul-08 21:25 

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.