top herbal penis size herbal enlargement

just another regularban.info web blog

MEMBERS:

Personal Websites and Business

Personal websites and business may not go hand-in-hand as far as you are concerned, but I urge you to think again. If you want to sell something, you may need to "sell yourself" first. People enjoy doing business with someone they know and like. More importantly, they want to know that they can trust you.

We are actually able to transact business all over the world due to today's technology. The problem with that can be a lack of personal service. However, with the internet, and especially with personal websites, we can feel as if we know someone that we have never actually met. We can know what a person looks like, we can know the sound of their voice, we can know all about their family, hobbies, dreams, future goals, etc.

When someone is surfing the web looking for a way to work from home, they are also looking for someone to partner with. Someone to mentor them and show them the way. They want to feel comfortable with a prospective future business partner.

If you want them to consider joining your opportunity, you have to be visible on the internet. You have to be willing to get personal and reveal yourself to them. Your site should be warm and inviting. It should provide information about you and your business opportunity. Give them a way to contact you.

This really is the way to gain business partners from all over the world, or from just the good old U.S. if your company is not international. Think about what you were looking for when you were searching for a home business. I don't know about you, but I felt a connection with my sponsor. I felt as if I knew her just by looking at her website.

That is what you want to create. You want to seem warm, friendly, and approachable. You want your reader to feel as if they already know you. A lady contacted me via email recently who was interested in my candle business. She practically told me her life story in that email, and it is probably because she felt like she knew me. She had seen my site and already knew all about me.

That is a good thing. It means that she felt as if I was someone she could talk to candidly. She must have thought that I would be approachable and would be receptive to her. Not everybody who contacts you will be so open. They may be wary of you and your business, but they contacted you because they found something of interest. This is when you provide them with honest answers to all their questions. It is also where you give them that personal attention that they are seeking.

Their state of mind when they contact you is not important. The fact that they made a connection is what matters. The reason for the connection was that they found your personal website and liked something they saw there. They were able to contact you because you provided them with either a phone number, email address, or both.

Do you see how this works? Prospects come to you. You do not have to "beat the streets" or chase your friends and family in order to build your business. This is not yesterday's network marketing, it is the new way. Believe me, it is also the best way. Many of yesterday's methods gave us a bad rap because they were so annoying.

Personal websites and business work well together. Get your own site up soon. It doesn't have to be fancy; just informative. Keep it simple and see what happens. I am sure that you will be pleased with the results. Remember to advertise your website and tell your friends about it. You cannot just build it and hope they will come.

Ronda Tuckness is exploring the world of internet marketing through her gourmet candle business and it is her goal to make a career in the industry. Please visit her website at http://www.your-candle-scents.com

 


Passing Parameters In A Data Table Using JSF

Some working knowledge of J2EE or JSF is assumed for this article.

Like some of you I've been frustrated with this technology known as JSF or Java Server Faces. There are several different flavors out there that are built on the shoulders of JSF. For instance Oracle's ADF (Application Development Framework). Oracle ADF Faces Components is a set of over a 100 JSF components that let you build a richer user interface for your Java EE applications. Oracle ADF Faces also includes many of the framework features most needed by JSF developers today.

That is great, and in many ways it will make life easier to develop in a JSF environment. Some items you will find available in these "add on" packages have a real benefit. For instance, as of the date of this article, I was very surprised that a File Upload is a feature still not implemented in JSF in respect to using natural jsf tags. There are ways to accomplish this task in JSF but they are not native JSF approaches. The process is a "no brainer" in just about every other framework available today, including asp.net.

Another simple task (I thought) was having a data table present the results of a query in an editable format. Possibly to update a user record or shopping cart. After working in other technologies it was very efficient to return a result set to a data table object and let that object take care of some of the trivial behaviors and characteristics of the table itself. When I started exploring JSF I was frequently and at every turn becoming more and more frustrated in trying to duplicate some of the most basic of processes similar to managing records through data tables.

There are not a whole lot of resources out there yet on JSF although it is growing steadily, and I found that all too often the resources that I was finding on the internet either didn't apply to the more simple tasks or the information was just completely wrong. One example of that was that it was stated in one article I read that you cannot use command buttons inside of a JSF data table. The recommendation was to use JSF hyperlinks instead when trying to perform an action from a data table due to a bug in the framework that prevented command button actions to fire if the button resided inside of a data table.

At first I thought "you've got to be kidding me"! Then I remembered that I've been finding a fair amount of "bogus" information in regards to JSF development so I decided to do further research and discovered that information to be less than accurate as well.

I simply had to find a way to populate a data table through a result set and get a command button to fire an action and pass all of the data in the data table to the backing bean to update the record. Multiple command buttons would exist as well as hidden fields pertaining to id numbers and so forth. Pretty basic stuff and we've all done it before with relative ease.

It turned out that the solution was in fact a simple one. "Binding". You've heard about it and read about it. But this approach was something a little different as far as I could find.

Many of the blogs and articles that I read dealt with passing the values as parameters and following the steps to define the parameters in faces.config files etc., then retrieving the parameters in a backing bean. Processing the passed data required another set of procedures to utilize mapping to each of the field parameters passed and then processing could begin.

That seemed like a whole heck of a lot to me just to retrieve form data. Then it occurred to me that I should be able to "bind" a text field component on a page to a backing bean. Once it is bound then all I have to do is extract the data. And that's all there is to it. My query returned results and pre-populated a data table including text fields with the values of the query pre-populated in the text fields.

Each one of those text fields was bound to a "HtmlInputText" type in my backing bean. It was not a String type like other approaches define. Doing that does require you to map parameters and populate that String variable through your set methods once the form is submitted.

What I found is that if I bind my text field to a property of text field type that it solved my problem of passing values from a data table, and I didn't have to define parameter fields anywhere in any xml file. Now that I had that figured that out I needed to figure out how to get the value of that property that I've bound my form field to, well why not getValue()?

I personally hadn't seen any examples online or in books for retrieving the value from a form binding it to the type of form element it was and simply use the getValue() to pull out the value of the object. Used like this getParameterFromForm().getValue().

Let me clarify that I am NOT saying that trying this approach isn't documented anywhere, I find it hard to believe that I've had some stroke of genius that no one has had before in the world of java, especially since I'm coming from .NET and ColdFusion.

After doing that I no longer had any problems passing form data to my backing bean. I was able to dynamically populate data tables with any number of records including any number of command buttons within that data table and I didn't have to concern myself with remembering to define parameters in any other areas of the application.

So put simply you can bind your form fields to properties of the same type in your backing bean, and then extract the value of that object using getValue() if you prefer over utilizing parameter string mapping and similar approaches for processing form data. I found it to be easier and less time consuming which has costs associated to it as well.

Ben Cortese is a developer and business analyst for the financial industry.

Copyright 2008. Article can be reprinted as long as author credits are given and content remains unchanged and intact.

 


Principles Of Good Web Content Development

Good content is a key factor that determines the success of any website. It is therefore very important that a website should host good and appropriate content in it's pages. There are various factors such as uniqueness, freshness and keyword usage that determine the effectiveness and appropriateness of web content.

Uniqueness of content ensures that the content is found only in your website. This should be specifically tailor-made for your website. Take your own time to prepare this in a most appealing manner. The time and effort you are putting in developing the content will give you good returns in the long run.

A fresh content tries to deal with a subject in a more interesting way. It helps to retain your visitors in your site and prompts them to spend more time there. The more time a visitor spent in your site, the more are the chances to generate a sale from your website.

Keywords are very important as far as any content development process is concerned. Search engines find more value in keywords. This is the major difference web content have with printed content. When you are writing for a website you are not only targeting visitors but also the Search Engines. Keywords lure the search engines to the web pages your website contains. The main challenge in good development is to make sure that you are not loosing quality and purpose of the content while developing your content with keywords. Identifying the keywords for your site should be done carefully. Research on potential keywords for your site with some keyword analysis tools is helpful. Traffic data analysis is also helpful in determining the selection of keywords for your Web Pages.

Read Building Text Link Advertisements

Gijo George

Visit Perfect Gifts. Fetch a gift that is truly unique!

 


Pages 
* About

Archives
    * February 2008
    * January 2008

Categories:
* Uncategorized

Last Updated:

regularban.info is proudly powered by WordPress MU running on  regularban.info.
Create a new blog and join in the fun!
Entries (RSS) and Comments (RSS).