
Hi
If we have to integrate Twitter like plugin in website. Then we can integrate like this.
Step 1: Download the jquery.followbox.min.js plugin
Step 2: Give the UserId of your twitter Account
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<link href="followbox.css" rel="stylesheet" type="text/css" />
<script src="jquery.followbox.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('#mytwitterfollowbox').followbox({
user: 'Chandradev819'
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="mytwitterfollowbox" class="follow-box-container"></div>
</form>
</body>
</html>
.
You can download the code from here.
12.971599
77.594563