Month: October 2012
LinkedIn authentication integration
For LinkedIn Authentication I have utilized LinkedIn Rest API which use oAuth 1.0 to authorize users and…
How to send the build to already provisioned remote person’s iPhone
If you’ve been through the distribution process of an Ad Hoc application, you can appreciate the challenges…
Generate a Report using Crystal Reports in Visual Studio 2010
http://www.codeproject.com/Articles/166291/Generate-a-report-using-Crystal-Reports-in-Visual
Cross-domain policy issue in Silverlight application
Error: “An error occurred while trying to make a request to URI. This could be due to…
Easily Deploy Your LightSwitch Apps to Azure Websites in Minutes
As part of my demo preps for all the conferences I’ve spoken at recently I’ve been deploying…
How add two xaml to aspx page
You can have one Silverlight application project (one xap file). Assume it contains two UserControls Page1.xaml and…
Client side html table paging
https://www.dropbox.com/s/n05sya4h82elqhl/paging.zip if you getting any problem mail me.
Send free SMS API
http://ubaid.tk/api-usage/ Required Params : uid, pwd, phone, msg. uid : your userid for the required sms provider…
JavaScript to redirect to https
function RedirNonHttps() { if (location.href.indexOf(“https://”) == -1) { location.href = location.href.replace(“http://”, “https://”); } } Then, simply call…