Upload video on youtube from asp.net website

Download you-tube API dll from: Here. Add below code on upload button: YouTubeRequestSettings setting = new YouTubeRequestSettings(“app name anything u like”, “Your Developer Key”, “Your youtube username”, “youtube a/c passowrd”); YouTubeRequest request = new YouTubeRequest(setting); Video newVideo = new Video(); newVideo.Title = “My Test Movie”; newVideo.Tags.Add(new MediaCategory(“Autos”, YouTubeNameTable.CategorySchema)); newVideo.Keywords = “cars, funny”; newVideo.Description = “My …

SBI Freedom

How to Register for “SBI Freedom” Mobile Banking Service The registration process for Mobile Banking Service consists of two processes : (i) Over mobile handset (ii) At SBI ATM or at branch Process over mobile handset Step I Send a SMS to 567676 (e.g.MBSREG Nokia 6600). You will get a User ID, default MPIN and …

Configure Live Hotmail, Gmail, Yahoo or AOL

Configure Live Hotmail, Gmail, Yahoo or AOL Do you have a mail account at Live Hotmail, Gmail, Yahoo! or AOL? This guide contains settings and instructions how to configure Outlook with those email providers. Live Hotmail Gmail Yahoo! AOL Account setting dialogs Most of the information can be set in the main “Add New E-mail …

Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.

You can set the MaxJsonLength property on your web.config: [sourcecode language=”html”] <configuration> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="50000000"/> </webServices> </scripting> </system.web.extensions> </configuration> [/sourcecode] refer link: http://stackoverflow.com/questions/1151987/can-i-set-an-unlimited-length-for-maxjsonlength-in-web-config

jQuery Beginners Guide

Adding jQuery to your Page jQuery is a client script library and so you have to add a script reference to your page. You can download the latest version of jQuery from the jQuery site at www.jQuery.com. Here are many ways that you can include jQuery into your page: 1. Reference a local copy via …