2 questions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to create a text file from my web page, BUT the data in the text file
will be inputed on my web form, so how can I create a text file to look like
the web form?
example:
FileName Date(20060401) 100
20060101 BMW 45,202 5000USD


01END (number of records)

how can I have my web page create my text file like this?
I can create a text file but not like this?
Also, in .NET how can I get my date format like 20050101 instead of 200511?
 
Hmm? In what way does that look like a web form?

When you write the text to the file you can also write characters for
formatting the text.

When you convert a date to a string, specify the format:

myDate.ToString("yyyyMMdd")
 
the web form is going to have textboxes across the form to look like they have
to be in the text file. So I need to create 25 dynamic text boxes 3 wide
then allow the user to click Create, and then create a text file with the
data from all the text boxes.

How can i do that
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top