Saturday, August 4, 2007

Believe in 5 Things



There is a place in the HEART where THOUGHTS become WISHES and WISHES become DREAMS.

It's a place where anything is possible if we only BELIEVE .

There are 5 things to believe in for a happy, successful life:

Believe in your FAITH ...

Believe in your GOALS ...

Believe in your FAMILY ...

Believe in your FRIENDS ...

And most importantly, Believe in YOURSELF


If you believe in these 5 things you can't go wrong._________________



FireFox 2

Download Now

http://www.mozilla.com/en-US/firefox/


Features

There’s a lot to do on the Web, and Firefox 2 is full of helpful features to make your time online more productive.

Improved Tabbed Browsing

We love tabs as much as you do, so Firefox 2 will open new web pages in tabs by default. Each of those tabs has its own close button, but don’t worry - if you accidentally close a tab, just go to the History menu to bring it back from the list of “Recently Closed Tabs.” You’ll never be crunched for space anymore, either. When you have too many tabs open to comfortably fit in a single window, scroll arrows will appear on either side, and a button on the right side will always show you an easy-to-read list of all your open tabs.

Spell Checking
Sometimes you’re in a rush, and can’t remember if it’s “i” before “e” or the other way around. Firefox 2 has built-in spell checking to keep you from making any mistakes in your blog posts and Web-based email, so you can worry about more important things.


Search Suggestions
Some of the search engines in Firefox 2 can read your mind, and actually suggest search terms for what you’re looking for. Just start typing into the Search bar, and a drop down list of suggestions will appear. (Works for Google, Yahoo! and Answers.com


The Web is a great place, but sometimes you’ll encounter bad people. Firefox keeps you safe from spyware, hackers, scammers and spammers, using the power of a vigilant and passionate community to protect you 24/7.
Phishing Protection

Phishing Protection takes Firefox’s security to a new level, helping to safeguard your financial information and protect you from identity theft. When you encounter a Web site that is a suspected forgery (known as a “phishing” site) Firefox will warn you and offer to take you to a search page so you can find the real Web site you were looking for.

Open Source, More Secure
At the heart of Firefox is an open source development process driven by thousands of passionate, experienced developers and security experts spread all over the world. Our openness and active community of experts helps to ensure our products are more secure and updated quickly, while also enabling us to take advantage of the best third party security scanning and evaluation tools to further bolster overall security.


Automated Update
Firefox’s update system always checks to see if you’re running the latest version, and notifies you when a security update is available. These security updates are small (usually 200KB - 700KB), giving you only what you need and making the security update quick to download and install. The automated update system provides updates for Firefox on Windows, Mac OS X, and Linux in over 40 different languages.


Protection from Spyware
Firefox will not allow a Web site to download, install, or run programs on your computer without your explicit agreement. Period. You will be notified whenever downloading or installing software, and Firefox will always tell you what’s happening so that you can stay in control of your computer.


Clear Private Data
Firefox offers the ability to clear all your private Web browsing data with just one click with the “Clear Private Data” tool. You can be confident that when you clear your private data in Firefox it’s gone - whether you are using your own computer or one at the library.







email to shravan.1258@yahoo.com

Handicrafts


History mentions that crafting of these were limited to a section of people who were given royal patronage and were identified as people belonging to a specific caste (there were many castes and one such caste was in the business of making these artifacts). This type of segregation helped to give a unique identity to this industry over the times. Even today one would find the same authentic procedures involved in the making of such handicrafts strictly observed. These handicrafts are an integral part of the Sri Lankan culture. Sri Lanka being a country in the tropics, where many a colourful facades of nature are omnipresent, it is not out of place that many of these handicrafts are quite vibrant and dramatic.

mail to shravan.1258@yahoo.com

How to select the multiple items in list box and that will store the Database






The code which I write here is ASP.NET with C#.net

This problem is easy to do.




First you take one LIstbox controll then go to its properties

then


make it as it follow

Selection mode= "Multiple "

then
write the following where you want


string str =null ;

for (int i = 0; i < ListBox2.Items.Count; i++)
{
if (ListBox2.Items[i].Selected == true)
{
str+= ListBox2.Items[i].Text.ToString();
str += ",";
}
}


if you want to store the database

"insert into sampletable values (' "+ str+" ')",cn);

(here cn means connection string which is used to connecthe database )





Mail to
Shravan.1258@yahoo.com