TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
manoj kumar
NA
147
139.8k
How to make a Unique folder name?
Oct 26 2010 10:57 PM
how it possible?
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.co.in/");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream receiveStream = response.GetResponseStream();
StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8);
StreamWriter sw = new StreamWriter("E:/Content/{0:ddMMyyhhmmss}{1},DateTime.Now/.text");
String line;
while ((line = readStream.ReadLine()) != null)
{
sw.WriteLine(line);
}
sw.Close();
Reply
Answers (
1
)
Validating PDF file in c#
Memory allocation in .net