Friday, August 31, 2012

Tuesday, April 17, 2012

PHP Contact Form

                                                                      freecontactform

Export Html to Pdf using iTextSharp(GridView)


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

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">
<title>Untitled Pagetitle>
head>
<body>
<form id="form1" runat="server">
  <div>
      <asp:GridView ID="GridView1" runat="server">
      asp:GridView>
      <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Pdf" />div>
form>
body>
html>



using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
using iTextSharp.text.html;

public partial class Pdf : MyPage
{
protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        GridView1.DataSource = GetData();
        GridView1.DataBind();
    }

}
protected void Button1_Click(object sender, EventArgs e)
{
    MyPage tmpPage = new MyPage();
    HtmlForm form = new HtmlForm();
    form.Controls.Add(GridView1);
    tmpPage.Controls.Add(form);
    StringWriter sw = new StringWriter();
    HtmlTextWriter htmlWriter = new HtmlTextWriter(sw);
    form.Controls[0].RenderControl(htmlWriter);
    string htmlContent = sw.ToString();
    Document document = new Document();
    // step 2:
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream("c:\\Chap0101.pdf", FileMode.Create));

    // step 3: we open the document
    document.Open();

    // step 4: we add a paragraph to the document
    //document.Add(new Paragraph(htmlContent.ToString()));

    System.Xml.XmlTextReader _xmlr = new System.Xml.XmlTextReader(new StringReader(htmlContent));

    HtmlParser.Parse(document, _xmlr);

    // step 5: we close the document
    document.Close();

    ShowPdf("c:\\Chap0101.pdf");

}

private void ShowPdf(string s)
{
    Response.ClearContent();
    Response.ClearHeaders();
    Response.AddHeader("Content-Disposition", "inline;filename=" + s);
    Response.ContentType = "application/pdf";
    Response.WriteFile(s);
    Response.Flush();
    Response.Clear();
}
public DataSet GetData()
{
    DataSet ds = new DataSet();
    DataTable dt = new DataTable("Product");
    DataRow dr;
    dt.Columns.Add(new DataColumn("Price", typeof(Int32)));
    dt.Columns.Add(new DataColumn("DisCount", typeof(Int32)));
    dt.Columns.Add(new DataColumn("SellPrice", typeof(Int32)));
    for (int i = 1; i <= 10; i++)
    {
        dr = dt.NewRow();
        dr[0] = i;
        dr[1] = i * 2;
        dr[2] = 1 * 3;
        dt.Rows.Add(dr);
    }
    ds.Tables.Add(dt);
    Session["dt"] = dt;
    return ds;
}
}
*Create a new clas Mypage.cs in app_code folder.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// 
/// Summary description for MyPage
/// 
public class MyPage : Page
{
 public override void VerifyRenderingInServerForm(Control control)
 {
     GridView grid = control as GridView;
     if (grid != null && grid.ID == "GridView1")
         return;
     else
         base.VerifyRenderingInServerForm(control);

 }
}



More information visit:
how-to-export-content-of-gridview-to.html

Printing GridView from ASp.net

                                                         
                                                             CODE

Wednesday, April 4, 2012

Configuring web application to utilise ASP.NET Application Services database


In  article Install ASP.NET Application Services database step by step guide is provided to install ASP.NET Application Services database regard less of SQL Server version. Installing / configuring Application services database allows multiple applications to utilise the database to implement application authentication and authorization.
After installation of services database, it is required to configure ASP.NET application to utilise the ASP.NET Services database(called as Membership database as well).
I come across multiple number of repeating postings at www.asp.net/forums with exceptions when post holders try to utilise ASP.NET application services database to authenticate or authorise end users. Common exceptions noted are ‘sql exceptions’ or ‘Invalid end user credentials when tried to use Login control’ or similar exception.
The reason behind most of these exceptions are not configuring web application to utilise SQL Server installed ASP.NET Application Services database. When responding to those repeating postings on asp.net forums i decided to write an article explaining this process instead of repeating the same info multiple times.
This article explains step by step process of configuring ASP.NET Web application to utilise SQL Server installed ASP.NET Application Services database.
  1. Copying and configuring connection String
  2. Copying and configuring Membership, Roles and Profile sections
  3. Using ASP.NET Web application Configuration tool to choose providers
Hope you find it helpful.
Step 1
Copying and configuring connection String
Note that configuration settings in Web.config file are inherited from machine.config file on your machine. In order to configure web application to utilise Application Services database it is required to copy related sections from machine.config file, which is located at
C:\windows\Microsoft.NET\Framework\v2.0.50727\CONFIG
NB:- Make sure that you are not making any changes to your machine.config file.
To Do:- Copy connection string from machine.config file as shown below.
<connectionStrings>
	<add name="LocalSqlServer" 
	connectionString="data source=.\SQLEXPRESS;
	Integrated Security=SSPI;
	AttachDBFilename=|DataDirectory|aspnetdb.mdf;
	User Instance=true" 
	providerName="System.Data.SqlClient"/>
connectionStrings>
To Do:- Paste above connection string from machine.config into Web.config and 
change required properties as shown below.
<add name="" 
connectionString="Server=;
Database=;
User ID=;
Password="
providerName="System.Data.SqlClient"/>
Step 2
Copying and configuring Membership, Roles and Profile sections
Note that depending on your application requirements you need either or combination 
or all of these three sections.
  1. Membership
  2. Roles
  3. Profile
To Do:- Copy Membership, Roles and Profile sections from machine.config intoWeb.config and configure required properties.
<membership>
	<providers>

	<add name="AspNetSqlMembershipProvider" 
        type="System.Web.Security.SqlMembershipProvider,
	System.Web, Version=2.0.0.0, Culture=neutral, 
	PublicKeyToken=b03f5f7f11d50a3a" 
	connectionStringName="LocalSqlServer" 
	enablePasswordRetrieval="false" 
	enablePasswordReset="true" 
	requiresQuestionAndAnswer="true" 
	applicationName="/" 
	requiresUniqueEmail="false" 
	passwordFormat="Hashed" 
	maxInvalidPasswordAttempts="5" 
	minRequiredPasswordLength="7" 
	minRequiredNonalphanumericCharacters="1" 
	passwordAttemptWindow="10" 
	passwordStrengthRegularExpression=""/>
	
	providers>
membership>

<profile>
	<providers>
	
	<add name="AspNetSqlProfileProvider" 
	connectionStringName="LocalSqlServer" 
	applicationName="/" 
	type="System.Web.Profile.SqlProfileProvider, 
	System.Web, Version=2.0.0.0, Culture=neutral, 		
        PublicKeyToken=b03f5f7f11d50a3a"/>
	
	providers>
profile>

<roleManager>
	<providers>

	<add name="AspNetSqlRoleProvider" 
	connectionStringName="LocalSqlServer" 
	applicationName="/" 
	type="System.Web.Security.SqlRoleProvider, 
	System.Web, Version=2.0.0.0, Culture=neutral,
	PublicKeyToken=b03f5f7f11d50a3a"/>
	
	providers>
roleManager>
To Do:- After copying above sections into Web.config, make sure you modify 
minimum required attributes such as name, connectionStringName and
ApplicationName
  • Note that depending on your application requirements you may modify other attributes mostly in Membership section.
After modifying minimum attributes in Membership, Roles and Profilesections, these sections looks similar as shown below.
<membership defaultProvider="AspNetMembershipProvider">
	<providers>
	<add connectionStringName=" 
	enablePasswordRetrieval="false" 
	enablePasswordReset="true" 
	requiresQuestionAndAnswer="true" 
	applicationName="" 
	requiresUniqueEmail="false" 
	passwordFormat="Clear" 
	maxInvalidPasswordAttempts="5" 
	minRequiredPasswordLength="7" 
	minRequiredNonalphanumericCharacters="0" 
	passwordAttemptWindow="10" 
	passwordStrengthRegularExpression="" 
	name="AspNetMembershipProvider"
        type="System.Web.Security.SqlMembershipProvider, 
	System.Web, Version=2.0.0.0, Culture=neutral,
        PublicKeyToken=b03f5f7f11d50a3a"/>
	providers>
membership>

<roleManager enabled="true" defaultProvider="AspNetRoleProvider">
	<providers>
	<add connectionStringName=" 
	applicationName="" 
	name="AspNetRoleProvider" 
	type="System.Web.Security.SqlRoleProvider, 
	System.Web, Version=2.0.0.0, Culture=neutral,
        PublicKeyToken=b03f5f7f11d50a3a"/>
	providers>
roleManager>

<profile>
	<providers>
	
	<add name="" 
	connectionStringName="" 
	applicationName="/" 
	type="System.Web.Profile.SqlProfileProvider, 
	System.Web, Version=2.0.0.0, Culture=neutral,
        PublicKeyToken=b03f5f7f11d50a3a"/>
	
	providers>
profile>
NB:- Make sure that application Name property is set at all the time as
suggested by Scott Guthrie here

Step 3
Using ASP.NET Web application Configuration tool to choose providers
After adding and modifying required sections as explained above, save your Web.config and configure your web application to utilise ASP.NET Application Services Database as explained below.
To Do:- Start ASP.NET Configuration tool from Website menu (shown below). Note that ASP.NET configuration tool can be initiated from Solution Explorer menu as well. 
ASP.NET Configuration Tool
Selecting ASP.NET Configuration opens Web Site Administration Tool in browser.
To Do:-Select Provider Configuration hyperlink as shown below.
Config_Tool
Selecting Provider Configuration navigates to Provider page where you can choose either Single provider or different provider for each feature as shown below.

  • To Do:- You can choose either of the above options available. For this tutorial choosing ‘Select a different provider each feature’ option. By doing so each providercan choose different data sources.
Selecting Select a different provider for each feature (advanced) hyperlink navigates to next page where you can select a provider for each feature as shown below.
Provider_Selection
On this screen you can see provider name(from provider section), choose a provider
for each feature i.e., Membership, Roles and Profile and select Ok.
Thats it. You are ready to fly! Configuration is done.
  • Testing:- In order to make sure your ASP.NET application services database is configured to be used by web application, you can create a new user by selectingSecurity tab with in Web Site Administration tool, then Create User hyperlink. After creating the user make sure that you see the same information in ASP.NET Application Services database aspnet_Users
References

Sunday, April 1, 2012

All World Newspapers in a single Web Page

We have lot of technologies to update news such as television, radio, computer etc,. Even peoples are showing their more interest on reading newspapers to update daily news. Since we can get full information about the news. We have lot of newspapers for daily updates. In our country India itself, we have more than 100 newspapers.


CLICK HERE

Free Video Flip and Rotate

Free Video Flip and Rotate

Requirements
Windows XP SP3, Vista, Windows 7 and .Net Framework 2 SP2
Description
Free Video Flip and Rotate. Rotate video or flip video with one mouse click.
Very fast and easy. 7 predefined presets:
- rotate video 90 CW;
- rotate video 180;
- rotate video 90 CCW;
- flip video horizontal;
- flip video vertical;
- flip video vertical and rotate 90 CW;
- flip video vertical and rotate 90 CCW.
Free Video Flip and Rotate contains no spyware or adware. It's clearly free and absolutely safe to install and run.


http://www.dvdvideosoft.com/products/dvd/Free-Video-Flip-and-Rotate.htm

Friday, March 30, 2012

Virtual Tamil Font Generator - Men Kolam

Virtual Tamil Font Generator - Men Kolam

Download mobile softwares for free from 15 top websites

Today mobile phones are one of the most important and useful device which is becoming more and more popular day by day. Everyone has a mobile phone in all the corners of the world no matter it is often used for personal use or for a business purpose.  this is being used by each member of the family even some are using more then one or two also.so, it is important to have a useful softwares at a free of cost for different purpuses and i have create here a list of sites which i usally used where you can download all the free mobile phone stuffs according to your choice.


Sites to Download Mobile Softwares for Free

§  www.gallery.mobile9.com:  This is the one of the good sites which provides free downoading mobile softwares. the main catagories for mobile user are free themes, free ringtones, free wallpaper, free softwares, free videos, free sms and much more with a best quality. you can get free softwares almost all the mobile phones such as nokia, sony ericson, motorola, htc, voice, blackberry,O2, lg, samsung etc.
§  www.download.cnet.com:  this site is very popular in worldwide for downloading free softwares of mobile. the site provides a good quality free softwares of blackberry, windows, iphone, palm, symbain, java, android. you can download here free mobile software about browser, business software, communication, developer tools, digital photo sharing, internet, mp3 & audiom phone security and video softwares.
§  www.mobileheart.com: Mobileheart is a site where you can download free games,themes, software,wallpapers,screen savers and sms messages. this site also provides a reviews of the latest models of mobile phones launched in market recently and you can check which mobile phone suites you most.
§  www.funmaza.com: funmaza is site which is offering the nations with entertainment and free downloads in many catagories which is used by a no.of peoples in different countries aross the web. you can download free latest ringtones, videos,softwares, games and newly uploaded themes for your mobile phones.
§  www.brothersoft.com: this is the best site for downloading mobile apps.all the softwares are updated here on daily basis and you can download here a latest collection of free mobile softwares and also enjoy the latest games for your mobile. it is the one of the best free apps store for free downloading business, communication, ebooks, entertainment, mp3 & audio, social networking applications.
§  www.mobilclub.org: Mobilclub is a site which provides a free downloading softwares, themes,games,music,wallpaper, videos and themes for mobiles.
§  www.mobuniverse.com: Mobuniverse is a very good site for downloading mobile themes, mobile ringtones and mobile softwares for free of cost. the data base of the site is updated on the daily basis and new collection in themes and ringtones are added. as far as downloading softwares you can also check here reviews of new mobile phone launched in the market recently.
§  www.crazy4mobilez.com: Crazy4mobilez is one of the best site which is providing a good quality free mobile softwares with just on one click start. also you don’t need to create an account here just grt what you want free of cost at any time, any place. in this site you can able to download a variety of free mobile softwares, free themes,free unloacking codes,free fonts, free pictures mesages and n series app and themes which is being updated on regular basis.
§  www.emobilez.com: it is also very good site for downloading free mobile stuffs like software, themes, games, wallpaper, screensaver etc. here you can able to download free mobile softwares, screensavers, themes,games, secret codes of  nokia,sony ericson, blackberry, iphone , antivirus, motorola, windows mobile.
§  www.mobilerule.org: you can download free mobile softwares, games, secret codes, ring tone, screen savers, themes, unlocker, videos and wallpapers. the site data is updated daily basis which increses the chances for new mobile stuffs.
§  www.cell11.com: this is the one of the most engaging sites in free mobile downloads and you can download anything relates to nokia, samsung, lg, motorola, iphone, pocket pc. the site has a very awesome type of collection in free mobile software, themes, 3gp videos, tips & tricks, wallpapers and mobile fonts.
§  www.mobimaza.com: mobimaza is the site where you can download free mp3 ringtones, polyphonic ringtones, 3gp videos, games applications, themes, secret codes and much more.
§  www.fsmobilez.com: fsmobilez is a site where you can download nokia free stuff, freebie directory, funny mobilez, mobile themes, symbian softwares and ringtones. you can download jad, jar, six,sisx frmat free mobile games,high quality sceen savers in different resolutions and over 3,000 nokia themes for your mobile phone at free of cost.
§  www.free-mobile-software.mobilclub.org: mobilclub provides a good quality mobile softwares, themes, games, video, music, wallpaper, window mobile software at free of cost.
§  www.mobilerated.com: Mobilerated is your free and legal site provider of mobile games,puzzles,trivia,productivity apps and other phone applications at free of cost. you can download free mobile phone games and apps without any registration, spam or subscription.
if u really like this post then you should read some more awesome articles here.

How to get Bing cool video backround effect for all users

How to get Bing cool video backround effect for all users

Norton Antivirus 2012 free download with serial key for 3 months

Norton Antivirus 2012 free download with serial key for 3 months

How to add special effects to your photos in Google plus [Picnik into Plus]

How to add special effects to your photos in Google plus [Picnik into Plus] 

Submit your blog (or) website to 100+ Search engines in single click

How to create Stunning Google Chrome Theme with your Own Images

Google Chrome is a very popular web browser owned by Google. google offers various themes for Chrome. But If you like to create a stunning theme with your own images  here is simple extension makes this easily by below three simple steps.



Steps:

1) Import an image from your computer to use as your theme background. Adjust the size of your image, placement, and more.

2) Add some color to the rest of your theme by customizing the omnibox, tabs, and remaining parts of the browser.

3) Name your completed theme and install it on your own Chrome, or share it with others on Google+ or through a unique URL.

How to Create :

  • First go to chrome webstore and launch My Chrome Theme app to your chrome browser.
  • Then click the My Chrome Theme app in New tab page and click the START MAKING THEME button.
  • In First step Choose your own image for background of your Chrome theme and Adjust position.

  • Then Click continue to 2-step  here you have to add some colors to your border and tabs 


  • In 3rd Stage give your theme name and click Make My Theme button.
  • After clicked Make my theme button your theme generating finally your page will be like below image.
  • Just click the Install My Theme button that's all your stunning chrome theme has been created and added to your browser.

Adobe Photoshop CS6 Beta Version Free dwonload


Download Photoshop CS6 beta for Mac (DMG, 984 MB)
Download Photoshop CS6 beta for Windows (ZIP, 1.7 GB)

தேடியந்திரங்களுக்காக பிளாக்கரில் சில புதிய வசதிகள் [SEO Tricks] | வந்தேமாதரம்

தேடியந்திரங்களுக்காக பிளாக்கரில் சில புதிய வசதிகள் [SEO Tricks] | வந்தேமாதரம்

Wednesday, March 28, 2012

computer tips 2012: Social Horizontal Counter Script For Google+ Faceb...

computer tips 2012: Social Horizontal Counter Script For Google+ Faceb...: Tweet Use this Vertical Counter Script to your web site: ------------------------------------------------ <div ...

How to.............: How to Attach Holidays Detail with Calendar Contro...

How to.............: How to Attach Holidays Detail with Calendar Contro...: HTML Code : < body > < form id =" form1 " runat =" server " > < div > < div > < p style =" text-align: center " > < b > < asp:Label ...

How to.............: Ajax Rating Control with Database

How to.............: Ajax Rating Control with Database: Introduction: Here I will explain how to use Ajax rating control with database to display average rating for particular article using asp....

How to.............: How to Attach Holidays Detail with Calendar Contro...

How to.............: How to Attach Holidays Detail with Calendar Contro...: HTML Code : < body > < form id =" form1 " runat =" server " > < div > < div > < p style =" text-align: center " > < b > < asp:Label ...

Installing IIS on Windows XP Pro


If you are running Windows XP Professional on your computer you can install Microsoft's web server, Internet Information Server 5.1 (IIS) for free from the Windows XP Pro installation CD and configure it to run on your system by following the instructions below: -

1. Place the Windows XP Professional CD-Rom into your CD-Rom Drive.

2. Open 'Add/Remove Windows Components' found in 'Add/Remove Programs' in the 'Control Panel'.

3. Place a tick in the check box for 'Internet Information Services (IIS)' leaving all the default installation settings intact.

4. Once IIS is installed on your machine you can view your home page in a web browser by typing 'http://localhost' (you can substitute 'localhost' for the name of your computer) into the address bar of your web browser. If you have not placed your website into the default directory you should now be looking at the IIS documentation.

5. If you are not sure of the name of your computer right-click on the 'My Computer' icon on your desktop, select 'Properties' from the shortcut menu, and click on the 'Computer Name' tab.

6. Your default web directory to place your website in is 'C:\Inetpub\wwwroot', but if you don't want to over write the IIS documentation found in this directory you can set up your own virtual directory through the 'Internet Information Services' console.

7. The 'Internet Information Services' console can be found in the 'Administration Tools' in the 'Control Panel' under 'Performance and Maintenance', if you do not have the control panel in Classic View.
Performance and Maintance
8. Double-click on the 'Internet Information Services' icon.
Administration  Tools/Internet Information Services Icon
8. Once the 'Internet Information Services' console is open you will see any IIS web services you have running on your machine including the SMTP server and FTP server, if you chose to install them with IIS.

9. To add a new virtual directory right click on 'Default Website' and select 'New', followed by 'Virtual Directory', from the drop down list.
Internet Information Services Console
7. Next you will see the 'Virtual Directory Creation Wizard' from the first screen click the 'next' button.

9. You will then be asked to type in an 'Alias' by which you will access the virtual directory from your web browser (this is the name you will type into your web browser after 'localhost' to view any web pages you place in the directory).

10. Next you will see a 'Browse...' button, click on this to select the directory your website pages are in on your computer, after which click on the 'next' button to continue.

11. On the final part of the wizard you will see a series of boxes, if you are not worried about security then select them all, if you are and want to run ASP scripts then check the first two, followed by the 'next' button.

12. Once the virtual directory is created you can view the web pages in the folder by typing 'http://localhost/aliasName' (where 'aliasName' is, place the alias you called the virtual directory) into the address bar of your web browser (you can substitute 'localhost' for the name of your computer if you wish).
Virtual Directory in IE 6


Free Web Apps for Windows XP IIS

Now that you have installed IIS on your Windows XP computer you may want to try running some Free Web Applications on it.

Here at Web Wiz we have a number of free Web Apps for IIS available for you to run, including Forums, Blogs, eNewsletter, Rich Text Editor and others. Have a look at the links below for more information.

Asp.Net Tips & Tricks: Weird value in QueryString - what is it?

Asp.Net Tips & Tricks: Weird value in QueryString - what is it?

Using ASP.NET: Querystring In ASP.NET

Using ASP.NET: Querystring In ASP.NET: Introduction With the help of the qurrystring we can send the value from one page to another page. This ...

பிளாக்கரில் Animated Popular Posts விட்ஜெட் இணைக்க

நம்முடைய பதிவுகளில் மிக சிறந்த பெரும்பாலானவர்களால் பார்க்க பட்ட பதிகளை Popular Posts என குறிப்பிடுகிறோம். அப்படி பிரபலமான இடுகைகளை வரிசைபடுத்தி கொடுப்பதே பிளாக்கரின் popular Posts விட்ஜெட் ஆகும். பிளாக்கர் தளம் இந்த விட்ஜெட்டை எந்த வித அனிமேட்டட் வசதியுமின்றி சிம்பிளாக வடிவமைத்துள்ளது. இப்பொழுது இந்த விட்ஜெட்டை அனிமேட்டட் வசதியுடன் பதிவுகள் நகர்ந்து செல்லும் படி எப்படி வடிவமைப்பது என காண்போம். இது போல மாற்றுவதனால் ஒரு குறிப்பிட்ட இடத்தில் எத்தனை பதிவுகளை வேண்டுமானாலும் சேர்த்து கொள்ளலாம். தேவை இல்லாமல் இடத்தை அடைத்து கொள்ளாது. மற்றும் பார்ப்பதற்கும் அழகாக இருக்கும்.

முதலில் பிளாக்கரின் Popular Posts விட்ஜெட்டை உங்கள் பிளாக்கில் இணைத்து இருக்க வேண்டும். இணைக்காதவர்கள் Design -Add a Gadget- Popular post சென்று இந்த விட்ஜெட்டை இணைத்து கொள்ளுங்கள்.
  • அடுத்து Animated Effect கொண்டுவர உங்கள் பிளாக்கரில் இணைக்க Design ==> Add a Gadget ==> Html JavaScript செல்லுங்கள்.
  • அங்கு கீழே உள்ள கோடிங்கை காப்பி செய்து பேஸ்ட் செய்யவும்.



  • அடுத்து SAVE பட்டனை அழுத்தி விட்ஜெட்டை சேமித்து கொள்ளுங்கள்.
  • அடுத்து அந்த விட்ஜெட்டை நகர்த்தி popular Post விட்ஜெட்டுக்கு மேலே வைக்கவும்.
  • இது போல வைத்தவுடன் SAVE பட்டனை அழுத்தி மாற்றங்களை சேமித்து கொண்டு உங்கள் பிளாக்கரில் சென்று பாருங்கள்.
உங்களுடைய Popular Posts விட்ஜெட் Animated widget ஆக மாறி இருக்கும்.