2
Answers

Reading of mails with attachments

Gowtham manju

Gowtham manju

13y
1.3k
1
Hi,

I need to read the mail inbox of my website and to download the attachments from it.....can u provide me any sugessions


i need to read those content and place in to my grid view of my aspx page.....



we are using sqweb mail server for accessing our websitemails.....

Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Use:

string[] items = fileName.Split('_');

items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.

These will exclude the underscores themselves.


Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You could deal with that situation (or even two hyphen delimiters) by replacing this line:

   string[] items = fileName.Split('_');

with this:

   string[] items = fileName.Split(new char[]{'_', '-'});