bhavna_816 0 Junior Poster

I m writing a code in VB.NET to access MS outlook Folders.Following is the code.I want tht when I click on the link on the message"subject" hyperlink it will go to the body of the message in the required folder.Wht should be given in a href?
For i = 1 To oItems.Count
oMsg =oItems.Item(i)
s.WriteLine("<li>")
s.WriteLine("<a href=ConsoleApplication1.exe?oPFolder=Personal Folders&sFolder=Inbox&oMsg=i>" + oMsg.Subject + "</a>")
s.WriteLine("</li>")
and how can we get the message body.I want that there is a hyperlink on Subject of each msg and when we click on this link the body of tht msg subject should be displayed.How can I do it?