Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Hi Complete code to reading last line in text file StreamReader streamReader = new StreamReader("HereWillBeYourTextFilePath"); ArrayList lines = new ArrayList(); string line; while ((line = streamReader.ReadLine()) != null) { lines.Add(line); } streamReader.Close(); if (lines.Count > 0) { Response.Write(lines[lines.Count - 1].ToString()); } ===============
The End.
jaiprakashv