Mobile app version of vmapp.org
Login or Join
Samaraweera270

: How to share web content to mobile? I am newbie. I built a site. But I am not know how to share web content to mobile? I mean add some button, user click the button, share site url or

@Samaraweera270

Posted in: #Mobile

I am newbie. I built a site. But I am not know how to share web content to mobile? I mean add some button, user click the button, share site url or content to android, iphone or even basic symbian system.

Should I make a contact to telephone company for a SMS service? Or only some 3rd part service on Internet? Is there any tutorial for reference or any software? Many thanks.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Samaraweera270

1 Comments

Sorted by latest first Latest Oldest Best

 

@Frith620

You can view any website with any platform which has a browser and, providing the website has been designed to comply with the browser, there should be no issue.

Javascript and flash can causes issues on certain mobile devices though, so test first if you feel this type of surfer is common/important etc.

As for sharing the URL by email, that is done in code as you would do on a website (regardless of browser because ultimately they are still viewing a website). As for third party plugins for SMS, it first depends on the language/technology you are using as to what service(s) are available. EDIT: You could try mashable.com/2008/04/19/send-text-messages/ to give you an idea.

If you want to just detect the device, then in ASP.NET (C#) you can do something in the PageLoad() method

if (Request.Browser.IsMobileDevice)
{
Response.Redirect("~/mobile.aspx");
}

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme