Thursday, June 6, 2013

How to add facebook in asp.net ?

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="fcbook.aspx.cs" Inherits="fcbook" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>

</head>

<body>

<form id="form1" runat="server">

<script>

// Load the SDK Asynchronously

(function (d) {

var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];

if (d.getElementById(id)) { return; }

js = d.createElement('script'); js.id = id; js.async = true;

js.src = "//connect.facebook.net/en_US/all.js";



ref.parentNode.insertBefore(js, ref);

} (document));

 

 

 

// Init the SDK upon load

window.fbAsyncInit = function () {



FB.init({

appId: '198191300293654', // App ID

channelUrl: '//' + window.location.hostname + '/channel', // Path to your Channel File

status: true, // check login status

cookie: true, // enable cookies to allow the server to access the session

xfbml: true // parse XFBML



});

 

 

 

// listen for and handle auth.statusChange events

FB.Event.subscribe('auth.statusChange', function (response) {

if (response.authResponse) {

// user has auth'd your app and is logged into Facebook

FB.api('/me', function (me) {

if (me.name) {

document.getElementById('auth-displayname').innerHTML = me.name;



}

})

document.getElementById('auth-loggedout').style.display = 'none';

document.getElementById('auth-loggedin').style.display = 'block';

} else {

// user has not auth'd your app, or is not logged into Facebook

document.getElementById('auth-loggedout').style.display = 'block';

document.getElementById('auth-loggedin').style.display = 'none';



}

});

$("#auth-logoutlink").click(function () { FB.logout(function () { window.location.reload(); }); });



}

</script>

<h1>

Facebook Login Authentication Example</h1>

<div id="auth-status">

<div id="auth-loggedout">



 

 

<div class="fb-login-button" autologoutlink="true" scope="email,user_checkins">Login with Facebook</div>

</div>

<div id="auth-loggedin" style="display: none">

Hi, <span id="auth-displayname"></span>(<a href="#" id="auth-logoutlink">logout</a>)

</div>

</div>

</form>

</body>

</html>

how to open any type file in .net ?

System.Diagnostics.Process.Start(Server.MapPath("imAgES/ConsumeWS.ppt"));

How to repeat character multiple times?

public string dottedline = new string(Char, N);

Example:
public string dottedline;
dottedline = new string('.', 200);
Response.Write(dottedline );

Wednesday, June 5, 2013

Jquery fundamental

<script language="javascript" type="text/javascript">

$(document).ready(function () {

$("#dialog").dialog();

$("a[href*='example']").css("color", "Red");

$("a[href$='.com']").css("color", "Red");

$("a[href^='mailto']").css("color", "Red");

$("a[rel='nofollow']").css("color", "Red");

$("a[rel!='nofollow']").css("color", "green");

$("a[href]").css("color", "Red");

$("#<%=txtLocation.ClientID%>").css("border-color", "blue");

$(".para1").css("background-color", "Yellow");

$(".para2").css("background-color", "lime");

$("p.para1").css("background-color", "Yellow");

$("span").css("background-color", "Yellow");

$("input:text").css("border-color", "blue");

$("textarea").css("border-color", "blue");

$("textarea, input:text").css("border-color", "blue");



});

function dispsrvice() {

var pgurl = '<%=ResolveUrl("~/webser.asmx") %>'

$.ajax({ Type: "Post",

//data: "{}",

data: "{'NameInfo':'" + $('#<%=txtName.ClientID%>').val() + "'}",

url: pgurl + "/Dispmsg",

contentType: "application/json;charset=Utf-8",

dataType: "Json",

success: "",

error: ""



});

}



</script>