开发者

Pound sign displaying problem in outlook in asp.net

开发者 https://www.devze.com 2023-02-13 15:53 出处:网络
I want to show some amount in outlook with £ sign on selectindexchanged even of a dropdownlist client side.

I want to show some amount in outlook with £ sign on selectindexchanged even of a dropdownlist client side.

Amount is displaying with sign in Win XP IE 7,8 but not in Windows 7 IE as given below:

Pound sign displaying problem in outlook in asp.net

HTML:

if($(this[this.selectedIndex]).val() == "A")
{
    var mailsubject="New win";
    var toEmail="abc@sify.com";
    var vSign = "Amount: £" + $(this).parent().siblings()[4].next开发者_如何转开发Sibling.all[0].value;
    var mailbody = escape(vSign); 
    window.open("mailto:"+ toEmail + "?subject=" + mailsubject + "&body=" + mailbody);
}

Does anyone know how to do it?


Try replacing the pound sign with its HTML entity:

£

And don't you mean JavaScript / jQuery, and not ASPX?


we got the solution.

we have to enable checkbox for "Enable UTF-8 support for mail to:protocol" in

Outlook --> Tools --> Options --> Mail Format --> International Options --> Internet Protocols

0

精彩评论

暂无评论...
验证码 换一张
取 消