Solution for the QlikView, Biztalk, DotNet and MSBI real time development problems
Search This Blog
Wednesday, August 24, 2011
Passing a control.ClientID to a javascript function in asp.net
Use below code to pass control client id to javascript function:
<asp:TextBox ID="demo1" runat="server"></asp:TextBox>
<img src="images/cal.gif" onclick="javascript:NewCssCal('<%= demo1.ClientID %>')"
style="cursor: pointer" alt="sdf" />
how to implement facebook like button in asp.net pages or master page
1) One way to add the like button on your site.go to this page,
http://developers.facebook.com/docs/reference/plugins/like-box
just enter your facebook details then press on the "Get Code" button, u will get the copy & paste code like below.
This is an example:
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fplatform&width=292&colorscheme=light&show_faces=true&border_color&stream=true&header=true&height=427" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:427px;" allowTransparency="true"></iframe>
2) Another way To implement facebook like button copy & paste the below code replace "MahindraHomestays" with "your facebook id"
http://developers.facebook.com/docs/reference/plugins/like-box
just enter your facebook details then press on the "Get Code" button, u will get the copy & paste code like below.
This is an example:
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fplatform&width=292&colorscheme=light&show_faces=true&border_color&stream=true&header=true&height=427" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:427px;" allowTransparency="true"></iframe>
2) Another way To implement facebook like button copy & paste the below code replace "MahindraHomestays" with "your facebook id"
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FMahindraHomestays&layout=button_count&show_faces=false&width=50&action=like&font&colorscheme=light&height=21"
scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 80px;
height: 21px;" allowtransparency="true"></iframe>
scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 80px;
height: 21px;" allowtransparency="true"></iframe>
Subscribe to:
Posts (Atom)
Popular Posts
-
What is SQL Injection SQL Injection is one of the most dangerous possible attacks we have to deal with as a web application developer, a...
-
For MVC Interview Questions Part 2 refer below link: http://challadotnetfaq.blogspot.co.uk/2013/12/mvc-interview-questions-and-answers_...
-
Qlikview developer, Designer and admin interview questions (Qlikview developer, Designer and admin FAQ’S) 1. Difference between Set ...
-
. Following code is useful to delete duplicate records. The table must have identity column, which will be used to identify the duplicate re...
-
Review the permissions of the user that you're trying to impersonate. In my situation, I was only getting the error on my development ...