I want to change some icons if the mail is in inbox when listing the mails via OWA, and I want to get the email's messageclass. How can I do it? is me should design a new exchange web form? I don't know whether asp can get the email's messageclass. if can, how can I get it. thank you!
wrote in message news:1149472387.201110.79290@h76g2000cwa.googlegroups.com... > I want to change some icons if the mail is in inbox when listing the > mails via OWA, and I want to get the email's messageclass. How can I do > it? is me should design a new exchange web form? I don't know whether > asp can get the email's messageclass. if can, how can I get it. > > thank you! The message class is a property of the message - you can get it when you get the main properties, like Subject, Sender, etc. Which API are you using to get the message properties - CDO, WebDAV? Lee. -- _______________________________________ Outlook Web Access For PDA , OWA For WAP www.owapda.com email a@t leederbyshire d.0.t c.0.m _______________________________________
> The message class is a property of the message - you can get it when > you get the main properties, like Subject, Sender, etc. Which API are > you using to get the message properties - CDO, WebDAV? > > Lee. > > -- > _______________________________________ > > Outlook Web Access For PDA , OWA For WAP > www.owapda.com > email a@t leederbyshire d.0.t c.0.m > _______________________________________ I want to change some icons when both outlook and owa display emails. I use redemption to code a outlook add-in to achieve it. Now it turn to owa. I don't know how a owa change it icon. maybe exchange web form. I have search for a long time. but there is little info about exchange web form. How can a web form design, is it like outlook form?
wrote in message news:1149589759.427128.219100@y43g2000cwc.googlegroups.com... > > The message class is a property of the message - you can get it when > > you get the main properties, like Subject, Sender, etc. Which API are > > you using to get the message properties - CDO, WebDAV? > > > > Lee. > > > > -- > > _______________________________________ > > > > Outlook Web Access For PDA , OWA For WAP > > www.owapda.com > > email a@t leederbyshire d.0.t c.0.m > > _______________________________________ > > > > I want to change some icons when both outlook and owa display emails. > I use redemption to code a outlook add-in to achieve it. Now it turn > to owa. > > I don't know how a owa change it icon. maybe exchange web form. I > have search for a long time. but there is little info about exchange > web form. How can a web form design, is it like outlook form? I think there would have been something about this on Siegfried Weber's site, but it seems to be down at the moment: http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=10 If all you wanted to do was change the icons, you could replace the images in the server's img folder. Lee.
> > I think there would have been something about this on Siegfried > Weber's site, but it seems to be down at the moment: > > http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=10 > > If all you wanted to do was change the icons, you could replace the > images in the server's img folder. > > Lee. Thank you very much for your help! the asaris-matrix site is still down now, so I can't get any infomation for my question. I know I can replace the images in the server't img folder, but I have to do some logic when I display the images. so I have to code something about it. the messageclass is use of the logic condition. sw