Click here to Skip to main content
15,898,134 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Session Pin
Vimalsoft(Pty) Ltd8-Oct-09 4:11
professionalVimalsoft(Pty) Ltd8-Oct-09 4:11 
AnswerRe: Session Pin
Christian Graus8-Oct-09 9:28
protectorChristian Graus8-Oct-09 9:28 
QuestionAdd Calender Control In Asp.Net GridView Control without PostBack The Page Pin
lrsalunkhe8-Oct-09 1:14
lrsalunkhe8-Oct-09 1:14 
AnswerRe: Add Calender Control In Asp.Net GridView Control without PostBack The Page Pin
Christian Graus8-Oct-09 1:15
protectorChristian Graus8-Oct-09 1:15 
AnswerRe: Add Calender Control In Asp.Net GridView Control without PostBack The Page Pin
Abhijit Jana8-Oct-09 3:32
professionalAbhijit Jana8-Oct-09 3:32 
QuestionStreamReader and StreamWrite for Text file Pin
sjs4u8-Oct-09 0:33
sjs4u8-Oct-09 0:33 
AnswerRe: StreamReader and StreamWrite for Text file Pin
Christian Graus8-Oct-09 1:10
protectorChristian Graus8-Oct-09 1:10 
AnswerRe: StreamReader and StreamWrite for Text file Pin
Atif Ali Bhatti8-Oct-09 1:56
Atif Ali Bhatti8-Oct-09 1:56 
hi,

I dont know which framework are u using? but if u r using framework 3.5, I recommed u to use the streamreader and streamwriter objects in using keyword e.g.,


using (StreamWriter sw = new StreamWriter(path))
{
sw.WriteLine("This");
sw.WriteLine("is some text");
sw.WriteLine("to test");
sw.WriteLine("Reading");
}

using (StreamReader sr = new StreamReader(path))
{
while (sr.Peek() >= 0)
{
Console.WriteLine(sr.ReadLine());
}
}

Hope this helps.

Regards,
Atif Ali Bhatti.
QuestionHiding div using jquery Pin
Jagz W8-Oct-09 0:21
professionalJagz W8-Oct-09 0:21 
AnswerRe: Hiding div using jquery Pin
Christian Graus8-Oct-09 1:09
protectorChristian Graus8-Oct-09 1:09 
AnswerRe: Hiding div using jquery Pin
Atif Ali Bhatti8-Oct-09 2:03
Atif Ali Bhatti8-Oct-09 2:03 
GeneralRe: Hiding div using jquery Pin
Jagz W8-Oct-09 2:37
professionalJagz W8-Oct-09 2:37 
QuestionSearch Engine Pin
Nanda_MR7-Oct-09 23:53
Nanda_MR7-Oct-09 23:53 
AnswerRe: Search Engine Pin
janani138-Oct-09 0:11
janani138-Oct-09 0:11 
AnswerRe: Search Engine Pin
Christian Graus8-Oct-09 0:21
protectorChristian Graus8-Oct-09 0:21 
Questionrepeater with multiple rows Pin
m@dhu7-Oct-09 23:35
m@dhu7-Oct-09 23:35 
AnswerRe: repeater with multiple rows Pin
janani138-Oct-09 0:19
janani138-Oct-09 0:19 
GeneralRe: repeater with multiple rows Pin
m@dhu8-Oct-09 0:43
m@dhu8-Oct-09 0:43 
GeneralRe: repeater with multiple rows Pin
janani138-Oct-09 1:13
janani138-Oct-09 1:13 
GeneralRe: repeater with multiple rows Pin
m@dhu8-Oct-09 2:11
m@dhu8-Oct-09 2:11 
AnswerRe: repeater with multiple rows Pin
praveen.c@byzan.com8-Oct-09 0:25
praveen.c@byzan.com8-Oct-09 0:25 
QuestionConverting Asp.net application to run trust level medium ? Pin
rahul.net117-Oct-09 23:00
rahul.net117-Oct-09 23:00 
AnswerRe: Converting Asp.net application to run trust level medium ? Pin
Christian Graus7-Oct-09 23:10
protectorChristian Graus7-Oct-09 23:10 
GeneralRe: Converting Asp.net application to run trust level medium ? Pin
rahul.net117-Oct-09 23:26
rahul.net117-Oct-09 23:26 
GeneralRe: Converting Asp.net application to run trust level medium ? Pin
Christian Graus8-Oct-09 1:11
protectorChristian Graus8-Oct-09 1:11 

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.