1

Move Export Facebook Photos Albums To Picasa Or Google Plus


If you want to move or export your FaceBook photos and albums to Google Plus + or Picasa,

then you can do this easily using web utility called MoveYourPhotos available in Chrome web store.



Move or export facebook photos and albums to google plus + picasa



Move Your Photos to Google Plus or Picasa


Move Your Photos is available as Chrome browser add on, so you need to have Google Chrome browser to use this application.

If you have joined Google's newly launch social networking site Google Plus and want to export all your photos and albums from facebook then Move Your Photos is the solution.

You can choose to upload all or upload selected photos or albums to picasa

Start moving or exporting facebook photos and albums to google plus using Move Your Photos
Hope this helps

0

Google Plus + Facebook Feeds Integration Extension

Integrate,Combine or fetch Facebook feeds in google plus with google+facebook extension.


Recently google has launched it's new social networking platform google Plus(google +),
and if you want to Integrate your facebook feeds inside it then this extension is for you.


.
Google+Facebook Feeds Extension

Google+Facebook allows you to see or integrate your Facebook stream inside Google Plus(Google+).

Simply Connect to Facebook, and get all the updates on your Google+ Facebook tab.

Crossrider has released the extension Google+Facebook. After downloading and installing it, a small Facebook tab appears at the top of the page, right beside the Google+ Home button. Clicking on it will display your Facebook news feed instead of your Google+ Stream. Just click on Home to go back. The extension even lets you update your Facebook status from withing Google+.

You can download Google+Facebook extension from this link


Enjoy google+ and facebook together


2

Add Expires Headers In Asp.NET

Add Expires Headers In Asp.NET 2.0,3.5,4.0 Using C# And VB.NET. In this example i am Explaining how to add or set expires headers for static files or images in asp.net 2.0, 3.5

Performance is the main concern for any asp.net web application and bit of this can be achieved by setting expires headers for static files and images which doesn't change too often.

Add Expires Headers In asp.net 2.0 3.5


when expires headers are set for a future date or to never expires then browser fetch these files from cache and doesn't need to download these files every time application is loaded in browser, hence site or application is loaded faster




To do this we need to add code mentioned below in web.config file of asp.net web application

Set Expires headers to future date

<configuration>
    <system.webserver>
        <staticcontent>
            <clientcache cachecontrolcustom="" cachecontrolmode="UseExpires" httpexpires="Thu, 31 Dec 2020 00:00:00 GMT">
        </clientcache></staticcontent>
    </system.webserver>
</configuration>

Add headers to expire after certain days

<configuration>
  <system.webserver>
    <staticcontent>
      <clientcache cachecontrolmaxage="150.00:00:00" cachecontrolmode="UseMaxAge">
    </clientcache></staticcontent>
  </system.webserver>
</configuration>

Now the file headers will expire after 150 days


Hope this helps


1

No Edit Html Option In New Blogspot/Blogger In Draft


.
If you are a blogspot/blogger user, then u may have noticed the blogger have removed the Edit Html Link from new blogger in draft dashboard.

This is quite frustrating as u can't not edit html of ur page.

But there are still 2 options to go to HTML code of ur template.







Please use This FeedBack Form to let blogger team know that you want Edit Html Option in New blogger


1st Option

Uncheck the Make Blogger in draft my default and reload the page by typing www.blogspot.com.

It will take you to old dashboard.

2nd Option

Log into Blogger in draft

Click the Dashboard Button


Copy your BlogID from address bar of browser.

Now append your BlogID at the end of link mentioned below

http://draft.blogger.com/html?blogID=

Url should look like this

http://draft.blogger.com/html?blogID=xxxxxxxxxxxxxx

Where xxxxxxxxxxxxxx is your BlogID

Paste in address bar and u'll be taken to html code of your template.



.

4

AutoCompleteExtender Example Ajax

In this post i m showing Ajax AutoComplete Extender Examples using ASP.NET C# and VB.NET with Database and WebService.

Autocomplete TextBox In GridView
In this example i am implementing the AutoComplete functionality to textbox in the EditItemTemaplate of GridView using AJAX autocomplete extender, for this we need to create a web service which calls the method to fetch data from database and display results as suggestions for textbox




AutoCompleteExtender TextBox CompletionList Width
Set Width of Completion List in Ajax AutoComplete Extender TextBox. The default behavior of completion list takes width equal to the width of textbox. we can change this behavior by applying some CSS style to set the width we want. default width is as shown below in the Image.


Autocomplete Textbox Progress Image
add animated Progress Image inside Ajax Auto complete extender textbox to represent loading of data.






Winforms AutoComplete TextBox In Windows Forms application
In this example i am explaining how to create a AutoComplete TextBox In windows forms application using C#.lp



hope this helps


.

3

GridView EditItemTemplate Example

In this post i am listing some GridView EditItemTemplate examples in Asp.Net 2.0,3.5,4.0 with C# Csharp and VB.NET.


autocomplete textbox in GridView

Example of Ajax Autocomplete Extender TextBox in EditItemTemplate of GridView.







Insert Edit Delete In GridView

Insert Update Edit and Delete Records In GridView using ItemTemplate and EditItemTemplate.





Search in GridView

Search records in GridView footer using footer template and ItemTemplate and highlight results using Ajax





Checkbox In GridView To Edit Or Update

Implementing Check All CheckBox in ItemTemplate of GridView to perform Bulk Editing or Deleting









Hope This Helps


.

2

ObjectDataSource Examples With GridView In ASP.NET

GridView With ObjectDataSource Examples In Asp.Net 2.0 and 3.5 with UpdateMethod, InsertMethod and Select Method  using C# csharp and VB.NET.

Here i have compiled list of few examples of ObjectDataSource to populate or bind gridview i posted earlier in this blog.



GridView With ObjectDataSource Examples In Asp.Net
Hide GridView Columns In ASP.NET







Images in Gridview/DataList using Objectdatasource






Insert Edit Update GridView with ObjectDataSource








Hope this helps

11

GridView Examples In ASP.NET 2.0 3.5 4.0 4.5

Find More Articles