Sunday, October 10, 2010
Wednesday, September 29, 2010
THEMES @ASP.NET
Code in Style with ASP.NET Themes
Introduction
· How Themes Work
A theme can consist of a combination of a css file and one or many skin files to control how ASP.NET server controls are rendered. These files are all contained within a folder, the name of which determines the theme. This folder, in turn, resides within a parent Themes folder. Any subfolders of the Themes folder act as themes for a site. For example, if you have a folder called ControlsTheme within the Themes folder, you can apply that theme to a page using the following declaration.
<%@ pagetheme="ControlsTheme"language="C#"%>
Once you place the theme attribute in the page directive, all the controls in that page automatically inherit the theme. Using Pre-Defined Themes
ASP.NET ships with some standard themes that you can try out for yourselves, including ones such as BasicBlue and SmokeAndGlass. Let us take a look at an example to understand how to use one of the pre-defined themes in an ASP.NET page.
<%@ pagetheme="BasicBlue"language="C#"%>
<html>
<headrunat="server">
<title>Using Pre-defined Themestitle>
head>
<body>
<formrunat="server">
<asp:labelid="Label1"runat="server"width="232px">This page uses
BasicBlue as its themeasp:label>
<br/><br/>
<asp:textboxid="TextBox1"runat="server">
asp:textbox>
<br/>
<br/>
<asp:buttonid="Button1"runat="server"text="Button"/>
<br/>
form>
body>
html>
Navigating to the above page using the browser results in the following output. 
Creating Custom Themes and Applying Them to the Pages
There are times when the built-in themes supplied with ASP.NET 2.0 may not meet your needs. In that case, you may want to create custom themes and apply them consistently to all the pages in your Web application. Creating custom themes in ASP.NET is a very simple process. All you need to do is create a special folder named Themes and place all your skins under that folder. Once you place the required .skin files under the Themes folder, they automatically become available to all the pages in the Web site.
Creating Custom Themes
This section explains how to create custom themes and use them in an ASP.NET pages. To create custom skins, you need to create .skin files and save them under the theme folder, which represents a specific theme. Skins look a bit like ASP.NET files in that they contain server control definitions and are used to alter the visual appearance of ASP.NET elements. Here are the steps for creating custom themes.
- In Visual Studio.NET Whidbey, create a new folder named Themes by right clicking on the Web site name and selecting New Folder from the context menu. Note that the name "Themes" is pre-defined and must only be used to hold custom themes.
- Once the Themes folder is created, right click on the Themes folder and select New Folder from the context menu to create a folder named ControlsTheme. The name of the folder is the name of the theme that will be used in different ASP.NET pages to refer to this theme.
- Now, right click on the ControlsTheme folder and select Add New Item from the context menu. In the Add New Item dialog box, select Text File from the list and enter the name of the file as Label.skin. As you can see from the name of the file, this will be used to hold the style and formatting for a label control. Once the Label.skin is created, add the following code to the Label.skin file.
<asp:labelrunat="server"width="300px"height="24px"font-bold="True" font-overline="True"font-size="Medium"forecolor="Green"backcolor="Silver"/>
- Note that the above code does not contain the id attribute for the label control since that needs to be specified in the pages that use the themes. The above line of code will automatically apply the specified formatting to any asp:label elements that are placed on a page to which the ControlsTheme is applied. The control definitions must include a runat="server" attribute, but they should never include an id attribute. Also, the style attributes for a control can be set to standard styles, or linked to the styles defined in a CSS sheet.
- Now that we have created a skin for the label control, let us create a skin file for the button control as well. To do this, again right click on the ControlsTheme folder and select Add New Item from the context menu. In the Add New Item dialog box, specify the name of the .skin file as Button.skin. After the file is created, modify the file contents to look like the following.
<asp:buttonrunat="server"forecolor="RoyalBlue"backcolor="Silver"/>
- So far, we have created the styles for a button control and a label control. Now that we have created these custom skins file, we can apply these consistently to all the pages in the Web site, providing a consistent look and feel for the entire Web application. Note that we have not specified the id attribute in the control declarations since the control that is actually inheriting this style will have its own id attribute.
As you have seen, a skin file can be used to apply styling and formatting to any ASP.NET element on a page, but they can't be used to specify attributes that are non-visual. For example, using the above .skin files, you can't specify a standard NavigateUrl attribute to be applied to all asp:hyperlink controls on a site. This is a design feature that will help to ensure that the skin files can only be used to apply formatting to a page.
Applying Custom Themes to an ASP.NET PageOnce you create the custom themes, applying them to individual ASP.NET pages is very simple. Basically you need to follow the same process that we used for applying built-in themes to an ASP.NET page. For the purposes of this example, let us create an ASP.NET Page named CustomThemes.aspx and modify the code in the page to look like the following.
<%@ page theme="ControlsTheme" language="C#" %>

The skins that we have created so far are called Control Skins, meaning that they automatically apply to all controls of the same type. For example, if you create a default control skin for a label control, the skin applies to all label controls on pages where you are using the theme. Control skins can be further classified into default skins and named skins. The skins we have created earlier are an example of default skins in which the skin is matched exactly by control type. For example, a button skin applies to all the button controls in the page. Named skins are skins for which you must assign a skinid identifier and then use that in different pages to reference it. This approach is very flexible in that you can add multiple entries for the same type of control to a skin file, uniquely identifying each one using a skinid attribute. This means you can have more than one style for a label control on a page. Let us demonstrate this by looking at an example. For this example, let us add one more skin named TextBox.skin to our ControlsTheme. After the file is created, we will add the following lines of code to it.
font-italic="True"/>
The above code contains the style for the textboxes. However, this is different from the previous skins (label.skin or button.skin) in that this skin file contains multiple styles for a textbox control. Each style is uniquely identified by the skinid attribute. The page that uses the above skin can uniquely identify each of the textbox styles by specifying the skinid attribute. Let us look at an example that illustrates this. <%@ pagelanguage="C#"theme="ControlsTheme"%>
<html>
<headrunat="server">
<title>Named Skins Exampletitle>
head>
<body>
<formrunat="server">
<asp:textboxid="TextBox1"skinid="lightGrayBackColor"
runat="server"width="392px">
This control uses the lightGrayBackColor
Skinid
asp:textbox> <br/><br/><br/>
<asp:textboxid="TextBox3"skinid="whiteBackColor"runat="server"
width="392px">
This control uses the whiteBackColor skinid
asp:textbox>
form>
body>
html>
The above code starts by specifying the Theme attribute in the Page directive. Then it declares two textboxes with each one containing different text. As you can see from each of the textbox declarations, they now contain a new attribute named skinid and the value of this attribute matches up with the value of the skinid attributes specified in the TextBox.skin file. Now if you navigate to the above page using a browser, you will see the following output. 
As you can see from the above example, named skins offer us the flexibility to create multiple styles for the same control and then differentiate them by using the skinid attribute.
Accessing Themes Programmatically
There are times where you may want to programmatically set the theme for an ASP.NET page depending on certain parameters. For example, in a library management Web site, you might want to provide one theme for the visitors of the Web site and provide a completely different theme for the administrators of the Web site. You can easily accomplish this by setting the Theme property of the Page object to an appropriate value at runtime. The following code example shows how to set the Theme attribute of the page at runtime.
<%@ pagelanguage="C#"%>
<html>
<headrunat="server">
<scriptrunat="server">
void Page_PreInit(object sender, System.EventArgs e)
{
Page.Theme = "ControlsTheme";
}
script>
<title>Dynamic Named Skins Exampletitle>
head>
<body>
<formrunat="server">
<asp:textboxid="TextBox1"skinid="lightGrayBackColor"
runat="server"width="392px">
This control uses the lightGrayBackColor skinid
asp:textbox> <br/><br/><br/>
<asp:textboxid="TextBox3"skinid="whiteBackColor"
runat="server"width="392px">
This control uses the whiteBackColor skinid
asp:textbox>
form>
body>
html>
The above code is very similar to our previous example except that in this case, we set the Theme attribute for the Page at runtime using the Page.Theme property. Note that you can set the Theme attribute only in the Page_PreInit event. Configuring Themes Using the web.config File Settings
So far we have configured the Theme attribute using the Page directive. We have also seen an example where we set the theme of the page at runtime. Even though both of these approaches are very useful, you need to perform this in each and every page. This can be very tedious and can result in a lot of duplication of code, especially when all the pages in the Web site use the same theme. In that case, you can obviate the need to specifying the theme attribute in every page by setting the theme attribute in the pages element (that is present under system.web) in the web.config file. For example, the following line of code in the web.config file specifies that all the pages in the Web site will use the ControlsTheme as their theme.
Themes and CSS
To apply a default stylesheet for a theme, all you need to do is create a .css file within the appropriate theme folder in the Themes directory. For example, you could place a css file called DefaultStyle.css within the Themes\DefaultStyle folder. When you specify the DefaultTheme in the theme attribute of the @page directive in a page, the DefaultStyle.css file is automatically applied. Note that you can still apply a stylesheet manually in the HTML by specifying the Link element in the head tag. You can actually place more than one stylesheet file within a theme folder - in which case ASP.NET will attempt to apply all stylesheets in that theme folder to the site, combining definitions contained in all the CSS files. Themes versus CSS Style Sheets
Themes are similar to CSS style sheets in that both themes and style sheets define a set of common attributes that apply to any page where the theme or style sheet is applied. However, themes differ from style sheets in the following ways:
- Themes can define many properties of a control or page, not just a specific set of style properties. For example, using themes, you can specify the graphics for a TreeView control, the template layout of a GridView control, and so on.
- Themes can include auxiliary files, such as graphics, that can't be included in a CSS style sheet.
- Themes do not cascade the way style sheets do; for example, theme property values always override local property values.
- Themes can include style sheet references. In that case, the style sheet definitions are applied along with other property values defined in the theme.
This article has examined what themes are and how they can be used to provide a consistent look and feel for an entire Web application. We have also seen how to extend built-in themes by creating custom themes that can go a long way in customizing the look and feel of a Web site. Also covered was how to set the Theme property of the Page object at runtime using the Page.Theme property and how to set the theme for an entire Web site using the entries defined in the web.config file. Finally, the article looked at how to use existing CSS style sheets in conjunction with ASP.NET 2.0 themes, which makes it possible to leverage existing investments in CSS style sheets.
Wednesday, April 14, 2010
Saturday, April 3, 2010
Training for spoken english
Part 1:
Part One
Where are you from?
Can you describe your hometown?
Is your hometown famous for any think?
What are your local industries?
What important changes have taken place recently in your town?
Part Two
I'd like you to describe last holiday (in detail)
You should say
With whom?
The destination,
How long did it take you to get to the destination?
And explain why it was good / bad
Part Three
Why xyz (your country) can attract people to travel?
Task 2:
Where are you from?
Where is your hometown located in your country?
What is the best of your hometown?
Now I'd like to ask you a few questions about friendship.
Do you like to play with your family or friends?
Do you like to have one or two close friends or more friends? Why?
Part Two
Which clothes do you like?Tell me the prescript on clothes when you are working or studying at your university?
Part Three
We've been talking about school uniform and I'd like to discuss with you one or two question related to this. Let's consider:Compare the different between the older and younger people on clothes.
How do the older people think of the youngster's dressing habit?
Part 1
What has the weather been like lately where you are living?
Is this typical of weather for this time of year?
Is this your hometown?
Describe your favourite part of your hometown?
What is do special about this place?
Is this area going to change or do you expect it to always be the same? In what way?
Part 2
I'd like you to describe a travel experience you have.
You should say
Where did you travel?
What was there?
Why did you come there?
And explain what you expected it to be like before you went and whether it lived up to your expectations.
Part 3
The tourism industry
1. Compare the tourist trip of local people and foreign visitors to your country.
2. Evaluate how important tourism is to your country.
3. Discuss any disadvantages you think there may be for xyz (your country ) in having a large tourist industry
Tuesday, February 23, 2010
Tips for personality development
Bilinguals are the people who are well versed with two languages. There are several advantages of being bilingual. Explore the article to know what are the benefits of being bilingual.
Are you one amongst the many who are trying to control their cravings? If yes, then the tips given here will surely prove handy. Read on to find out how to deal with your cravings.
Being single means being your own person, and not one half of a couple. Read on to know how to be happy when not in a relationship.
You thoughts decide your fate. Explore the article to know more about how to utilize the positive power of thinking.
Being witty while conversing can be an impressive tool to attract and amuse your audience. Read through the following article to know how to have a witty conversation.
Feminity is a concept that is as individual as it is a social construct. Here is how to be more feminine in mind, body, and spirit.
It has been accepted by one and all that positivity holds the key to success and happiness. Here are some ways in which you can maintain a positive outlook.
Your self esteem needs to be constantly worked upon as it can suffer a blow by the slightest criticism. Explore the article to find some self esteem building activities and ways.
To be alone can be good but to be lonely can be a curse. Read the article below for tips on curing loneliness.
Though all of us suffer from a bad mood at times, only a few are able to snap out of it quickly. With this article, explore ways on how to get out of a bad mood.
From children to grownups, almost everyone has a fear of the dark to a certain extent. Read the article below to learn tips on how you can overcome fear of the dark i.e. Nyctophobia.
Being a natural leader requires a lot of effort and dedication. Read on to know more about tips to develop natural leadership qualities.
Poise is the perfect balance of mind and body. Read the article below for tips on how to improve poise.
Although there is no simple solution for lack of motivation, the key is to understand your thoughts and how they drive your emotions. Read the article to know to tips on how to motivate yourself.
Time is one of the most significant aspects needed to accomplish business and personal goals, urging a need to organize it. Explore this article to know tips on how to organize your time.
Utilizing constructive criticism helps one to identify one's mistakes and flaws and take corrective measures. Read the article to know how to use constructive criticism.
Life can become a daily struggle for those who do not appreciate its brighter side. Explore the article to find some helpful tips on how to be more thankful to enjoy life better.
Speaking in front of a group of people can be a harrowing experience for some and pleasant for others. Read this article to explore some tips to master the art of public speaking.
It is difficult for a profession-oriented person to sit at home before a job finds its way into his/her kitty, but being happy is in our hands. Here is how to stay happy at home.
Staying mentally sharp enables us to become strong and handle the course of our life in a better way. Explore the article to know ways on how to become a mentally stronger person.
Being judgmental is human nature, but it is not always useful to us. Explore this article for tips on how to keep from having a judgmental attitude and avoid being too critical.
Have you ever wondered why extremely successful people have a different thinking? If you too want to have a mind like theirs, read on for some valuable tips on how to think like a millionaire.
If you find yourself constantly thinking about someone, and wish to stop thinking about him/her, read on to find out how to get someone off your mind.
Procrastination leads to various problems, like failed tests, gained weight & weakened relationships, so stopping it is necessary. Read on to explore different tips on how to stop procrastinating.
Got bored with you own self? Want to know how to reinvent yourself? Explore the following article and find ways of reinventing yourself and becoming a whole new you.
An extensive vocabulary is a requisite for good communication. Read the article below to know more on how to increase your word power.
Do you have a speech coming up? Make it a great speech and not just a speech. Here’s how to do it.
Improving your posture not only makes you look smarter, but also adds to your confidence. Follow the article to know some valuable tips on how to improve your posture.
Overcoming Fear Of Abandonment – How To Overcome Fear Of Abandonment
Graciousness is a sign of good upbringing. Read the article below to know more on how to be gracious.
Articulation exercises can help you develop good verbal skills. Read the article below to get an idea on the various types of articulation exercises.
Controlling anger outbursts is an essential step to maintain internal and external peace. With this article, explore some of the effective ways on how to control anger outbursts.
Active reading is important as it keeps your mind dynamic and promotes the flow of fresh ideas. Explore the article to know more about the importance of reading.
Becoming a more dependable person does not come easily, as it requires planning and organization of your schedule. Explore the article to know ways on how you can become a more reliable person.
To lead a disciplined life one must have a daily routine. Explore the article below to get an idea on how you can start a daily routine.
Finding it difficult to relax your vocal chords, when you need to strike a conversation? Read on to know how to master the art of conversation.
Forgiving your own mistakes can be very difficult as guilt envelops your mind and makes you unreasonably remorseful. Explore the article to know how to forgive yourself & stop feeling guilty.
Active listening is basically a communication skill that improves your ability to comprehend verbal information. Read on to find some activity ideas for active listening.
To show respect to others is a duty. Read the article below to have an idea on how to be respectable towards others.
Fear of intimacy is the reluctance of a person to get into an emotional relationship. Read the article below to get an idea of how to overcome your fear of intimacy.
Forgiving and forgetting the past hurts is, perhaps, one of the most difficult things to do. Explore the article for some valuable tips on how to forgive and forget when someone hurts you.
Impressing people around you is an art, which can be mastered easily, provided you know the right technique for the same. Go through this article, to get tips on how to impress people.
Overcoming procrastination is not very difficult. Read on the article to know how to overcome procrastination.
While life can pose challenges more than often, a positive thinking mind knows how to keep the guns blazing, come what may. Read on to know some exercises and activities for positive thinking.
Confidence is the key to success. Read on to know the confidence building techniques.
Mornings come with a lot of rush activities and tend to be stressful for the mothers especially. Explore this article to know the tips on how to avoid being rushed in the morning.
Sometimes, a slight eye contact can speak a thousand words and that is the beauty of understanding body language. Explore the article to know tips on how to understand body language.
Leading group discussions can be quite challenging and demanding at times. In case you are also wondering how to lead a discussion in the best way, check out the tips given here.
Do you want to be successful? Follow these points to start on your path to success right now.
The dividing line between being assertive and arrogant is very thin and you can’t risk being the latter. Read on to know tips on how to be assertive without being arrogant or agressive.
The query ‘how to fix low self esteem’ has often been asked by people all over the world. Given below are some simple tips to overcome low self-esteem and lead a life full of confidence.
The most magnificent way to get to know a person is by having a good conversation. Explore this article to know useful tips on how to have a great conversation with anyone.
You win some and then you lose some. Ever wanted to win them all? Here are some proven ways to win an argument.
Saying ‘No’ can be a terribly difficult thing to do, for at least some of us, but learning to do it is important. Explore the article to know some valuable tips on how to learn when to say ‘No’.
Taking a compliment gracefully and confidently has now become a part of social refinement. Explore this article to find tips on how to take a compliment.
If you have always wondered how to improve effective listening skills, you will be happy to know that it is not very tough. Read on to get some simple tips on improving your effective listening skills
Improving your social skills is extremely important, as it is a major facet of all interactions and communications. With this article, explore tips as to how can you improve your social skills.
Making strong first impressions is extremely vital in both personal and professional life. Go through the tips given in the article, to know how to make a great first impression.
Positive communication technique goes a long way in assuring effective exchange of views & opinions. With this article, explore positive communication skills.
Getting over the past can be difficult, but it is not impossible. With this article, get some valuable tips on how to get over the past, with ease.
Improving your non-vocal gestures is important, if you want to convey a strong meaning or a definite message. Check out the tips given here and know how to improve your non-verbal gestures.
With the right tips in hand, becoming a successful speaker, who knows how to command attention, is very much possible. Explore the article to know how to be a good speaker.
Avoid watching television and pave the way for a healthy lifestyle. In case you find that difficult, check out the amazing tips given here and know how to stop watching TV.
In this modern world, most people look for an answer to how to get rid of fear. In case you are one of them, check out the tips given here and know all about getting rid of your fear.
Even the most seasoned performers suffer from anxiety before a performance. Follow the article for some tips on overcoming performance anxiety and know how to get rid of it successfully.
Have you been finding it increasingly difficult to remember important things and keep your mind sharp? Explore the article to find some valuable tips on how to stay mentally sharp.
How to end chronic worrying is a major question disturbing the minds of many people today. Explore the article to get some helpful tips to help you stop chronic worrying.
Peer pressure may be hard to combat, but you need to evolve strategies to avoid it, as it forces you to be someone else. Explore the article to find useful tips on how to get rid of peer pressure.
Sign language is a manual mode of communication which involves gestures and hand sings. If you want to know how to learn sign language, explore the article for some useful tips.
Convincing others is a powerful talent, but there is also hope for those who struggle terribly in this department. Explore the article to find some useful tips on how to convince others.
Like everything else, there are different kinds of anger too. Read on this article to know the different kinds of anger.
Attitude is the driving force of life. Explore this article to know how to change your attitude.
Combating shyness is on your mind since long, but you don’t know how to go about it? Explore the article to learn some very useful tips on how to cope with shyness.
Memory improvement is quite possible by putting in some smart efforts, with effective results to follow. Explore the article for some valuable tips and techniques to improve your memory power.
You have been getting those sharp stabs of the little green eyed monster, but are not sure that you are feeling jealous? Read the article to explore tips on how to know you are jealous of her.
Accepting oneself is utmost important in one’s life. Read on to know how to accept yourself.
Every problem has a solution and stuttering is no exception to the rule. In other words, there is a treatment to stop stuttering as well. Read on to get tips on how to treat stuttering.
Handling difficult people can get on to your nerves and infuriate you. Explore the article to know some helpful tips on how to successfully handle difficult people.
The benefits of time management are well-recognized and beyond the realm of any debate. Explore the article to know the advantages of managing your time in the right way.
Job loss can be a disheartening experience. Read on to know how to get over job loss.
Stage fright is one of the most common phobias. Explore this article to know how to get over stage fright.
One of the best ways to avoid negative thinking is to look at the brighter side of life. With this article, explore great tips on how to avoid negative thinking.
An angry, frenzied mind is the root cause of all the human troubles. Explore the article for some valuable tips for controlling your anger and know easy ways to be in control.
Public speaking is an art that can be refined and polished, by indulging in regular exercises. Go through this article, to find easy public speaking exercises that are sure to enhance your skill.
Who doesn’t want to be popular? Check out some useful tips on how to be a popular girl.
The most complex thing in life is to understand yourself, which is the pathway to self-discovery. Read the article to know how to understand yourself in the right way.
Developing your psychic abilities and using them to effect is possible overtime with practice. Read the article for some useful tips on how to develop your psychic abilities.
The emotion of Jealousy has struck each one of us some time or the other. If you want to know about how to get rid of jealousy, read this article to get an idea for getting rid of jealous feelings.
Improving your spoken English (a universal language) can surely enhance your communication skills. Read on to explore tips on how to improve your spoken English.
Do you that feel you are too insecure in your relationships & want to overcome this feeling? Read the article for some useful tips on how to undergo a transformation & get rid of your insecurities.
Swearing is a shockingly offensive use of language and one should get rid of it at the earliest. Read the article for some useful tips to stop swearing.
Do you struggle to manage your time properly and feel frustrated at the end of the day? Read the article for some simple and practical time management tips.
Breaking a bad habit, whether it is minor or life-threatening, is essential and goes a long way in making you a better individual. Go through the article, to get tips on how to break bad habits.
Setting new goals is essential to keep the spirit of gusto and zeal alive in your heart. Learn through the following article, tips on how to set new goals.
Finding a cure for inferiority complex can be a difficult task, but it is not impossible. Go through the article, to know how to get rid of an inferiority complex effectively.
Getting rid of bad luck becomes essential, when nothing in your life seems to be going right. Go through this article and explore ways on how to get rid of the bad luck.
Learning how to manage anger becomes essential when you find yourself fuming at the slightest of provocation. Read on to explore some tips for managing anger.
In order to fix your bad reputation, you need to acknowledge the problem first. For more tips on how to get rid of a bad reputation, check out this article.
Do you suffer from stage fright and want to overcome your fear? Read the simple tips given here and know how to get rid of your stage fright and rock the stage!
To be successful in life, one needs to become a good listener. Explore through this article, some tips on how to be a better listener.
Do you want to know how to become a good communicator? If yes, then this article would provide you the needed help. Check out some useful tips for developing good communication skills.
Communication is the key to success, but not all of us are aware of the benefits of sweet-talking. Read this tips given in this article and know how to sweet talk.
Getting respect from others is very important for one’s personal as well as professional growth. With this article, you will be able to know how to get respect.
Handling criticism is an area where only a few of us prove to be connoisseurs. With this tips given in this article, learn how to handle criticism.
Making people listen to you is a tedious job but can be made easy with the help of following tips.
If you want to be a popular person, but don’t know how to be one, here are some tips to help you enlist your name in world of fame around you.
Assertive communication skills can easily help you get what you want. Here are some tips that will help you know how to be more assertive in communication.
The importance of time management in everyday life cannot be ruled out. With the article, you will know about the significance of effective time management in your life.
For all those who want to know how to be punctual, the tips given in this article will prove to be handy. Browse through and explore how to improve your punctuality.
Speaking confidently in public is something very few are adept at. If you want to know how to speak in public, explore the useful tips given in the article.
Developing critical thinking skills becomes vital, when you have to analyze a situation and find its best possible solution. By exploring this article, learn how to develop critical thinking skill.
Do you want to know how to be funny and humorous? With this article, learn to be fun to be with, for the people around you.
For overcoming social anxiety disorder, you need to concentrate on improving your personality and behavior, while socializing. With the article, you will learn how to overcome social anxiety.
Overcoming inferiority complex may seem to be a difficult task for most of the people. With the tips given in the article, you will know how to overcome inferiority complex.
Are you suffering from bad memory? If yes, then browse through the article and find out the best ways to improve your memory.
A speaker requires good communication skills, apart from the choice of correct words, in order to be articulate. Explore the tips given in the article and learn how to be articulate.
Do you want to know how to become a motivational speaker? If yes, then explore the tips given in the article and learn the art of motivational speaking.
While being photogenic is an asset for many people, others have to try out tricks to make themselves camera-friendly. Go through the tips given in the article and know how to be more photogenic.
It is very important to know how to act confident at work in order to climb the ladder of success easily. We are here to help you with some tips for being confident at workplace.
Are you wondering how to control your emotions? Go through this article, to know some effective ways and methods for controlling intense emotions.
For human beings, socializing with the people around them is vital to survive in the society. With the tips given in the article, you will know how to socialize with people.
Finding the hidden talent requires the observation and analysis of one’s own self. With this article, you will know how to find your talents.
Gaining self confidence is important if you want to achieve the goals that you have set for yourself. With the tips given in the article, you will know how to be confident.
You need to take serious efforts if you want to be a girly girl. With the tips given in this article, you will know how to be a girly girl.
There are many ways to make people like you, some of which are given in this article. Go through the following lines and know how to get people to like you.
Looking gorgeous is not an uphill task. Explore this article to know about how to revamp your look to drop-dead gorgeous.
It is necessary to be positive and to be happy in every situation. Read this article to find tips that will help you to think positively, no matter how bad the situation is.
Are you looking for some tips for feeling good about yourself? Go through the article to know how to feel good about yourself and regain the high spirits.
Reading is all about extracting maximum information in the least amount of time. Read this article to know the key steps of reading comprehension for a more productive reading.
Do you have a habit of talking softly? Want to know how to talk loud enough for the people to hear you in commotion as well? Read this article and get some tips on talking loudly.
Do you want to know how to look classy and attract the attention of the people around you? If yes, then go through the article and read the tips on looking classy.
Being successful indicates that you are satisfied and happy with what you are doing in your life. Explore our expert tips in this article and know how to become successful.
It is the qualities of a good leader that make him/her stand out from crowd. Go through the article to know all about the effective leadership qualities.
Removing negative thoughts is vital for a person to remain focused on his/her goals. Go through the article and learn how to remove negative thoughts from your mind.
Believing in yourself is the key to achieving your goals. Explore the article to know how to believe in yourself.
Are you wondering how to ignore rude comments made by insensitive people? If yes, then go through the following lines and get tips on how do you handle rude comments.
Do you feel surprised to see someone who stays happy all the time? Being happy in life is something that depends entirely on you. If you want to know how to be happy, go through this article.
Do you face difficulty starting a conversation? Are you looking for ways to get over the problem? Read on further as we provide tips on how to start up a conversation.
Being funny is not an easy task and requires a lot of skill and caliber. In case you want to be funny and do not know how to do that, read the tips provided here and learn how to be funny.
Given below are some signs of insecurity that are commonly seen amongst people. To know what are the signs of an insecure person, read on.
Are you always on the lookout for some ways and tips for improving your memory? Check out memory improvement techniques and find info on how to improve memory.
Effective communication is the basis of human existence, though one should know the proper ways of indulging in it. Read on to know how to communicate with people.
How to build your dating self confidence is something everyone wants to know. Read on for tips that will help you in building your dating self confidence.
Self esteem is the worth you feel about yourself. Check out some easy tips on developing/building self esteem.
If the question, how to become popular has been bothering you since long, we are here to provide you the answer to the same. Read onto know some tips on being popular.
There are a number of ways following which you can become charming. Learn how to be charming by reading the article given below.
Do you want to know how to become more outgoing? Read the tips given below for being more outgoing.
If you feel good about yourself, you will automatically end up looking your best. Read the tips and ways given here and know how to look your best.
Everyone wants to know the answer to the question how to be beautiful. For more on how to look attractive, read the tips provided in this article.
How to be cool is a tricky task, which requires an attitude change on your part. To learn about being cool, read the tips given below.
If you want to know how to be smart, read the tips given below. Check out the tips given below on how to become smart.
Becoming a leader is not an easy job and requires a person to have some basic qualities and skills. In this article, we will tell you characteristics of effective leader.
Feeling upset and disappointed is okay, but you should also know how to control feelings at such a time. Read on further to find some tips for controlling anger & depression.
A lot of people find it difficult opening up and talk about their innermost feelings to others. To know how to open up to people, check out these useful tips.
Overcoming shyness requires daily practice and determination. To know how to get over shyness, read the tips given below.
Here are some tips that will help you to become social & overcome shyness.
Anger is one of the worst enemies of a person, which can wreak havoc in his personal relationships. With the anger management techniques & tips given here, know how to control anger.
There could be many reasons behind one lacking in confidence, but it does not mean one has to live with it forever. This article gives tips on building confidence.
Subscribe to:
Comments (Atom)






