- 130
Hello-
I am using the short description field to store the phone number for each of my locations, and I have modified the shop.cshtml to display the short description value just below the location title.
I want to link the number with a tel hyperlink so that mobile device users can click the number to bring up the dial pad....
..but when the values I have stored in the database are formatted like this:
(123) 456-7890
The user touches the number on his device and the parentheses, space, and hyphen are converted to "7", so the number is not correct to dial...
So I changed my stored values to have only digits, like: 1234567890
But it looks bad to visitors...
So I wrote this code on my Shop.cshtml to format the value for the visitor to better understand:
But I always get an error:
h:\root\home\myaccount\www\nopSite\Plugins\SevenSpikes.Nop.Plugins.StoreLocator\Views\StoreLocator\Shop.cshtml(41): error CS0029: Cannot implicitly convert type 'System.Web.IHtmlString' to 'string'
I tried other variations, but it's always the same error. I really am just guessing...
The solution does not have to be in C# MVC....I think maybe just a jQuery or Javascript can do it because I only want to affect the output to the screen..not form input..but I don't know.
Can somebody please help me?
I am using the short description field to store the phone number for each of my locations, and I have modified the shop.cshtml to display the short description value just below the location title.
I want to link the number with a tel hyperlink so that mobile device users can click the number to bring up the dial pad....
<a href="tel:@Html.Raw(Model.ShortDescription)">@Html.Raw(Model.ShortDescription)</a>
..but when the values I have stored in the database are formatted like this:
(123) 456-7890
The user touches the number on his device and the parentheses, space, and hyphen are converted to "7", so the number is not correct to dial...
So I changed my stored values to have only digits, like: 1234567890
But it looks bad to visitors...
So I wrote this code on my Shop.cshtml to format the value for the visitor to better understand:
@{
string thephone="";
[email protected](Model.ShortDescription);
<span style="position:relative;left:20px;top:5px;text-align:left;font-size:22px;font-weight:bold;color:green;">
<a href="tel:@string.Format("{0: (###) ###-####}",@thephone)">@Html.Raw(Model.ShortDescription)</a></span>
}
But I always get an error:
h:\root\home\myaccount\www\nopSite\Plugins\SevenSpikes.Nop.Plugins.StoreLocator\Views\StoreLocator\Shop.cshtml(41): error CS0029: Cannot implicitly convert type 'System.Web.IHtmlString' to 'string'
I tried other variations, but it's always the same error. I really am just guessing...
The solution does not have to be in C# MVC....I think maybe just a jQuery or Javascript can do it because I only want to affect the output to the screen..not form input..but I don't know.
Can somebody please help me?