|
just another regularban.info web blog |
| MEMBERS: | Web Site Monetization - Turn Your Web Site into a Money Maker
Whether you're a blogger or just have a personal web site, you need to know something very important: With just a little bit of effort you can be making money from your web presence. It always amazes me the number of blogs I see that aren't taking advantage of some simple tactics to bring their owner some additional cash. I'm not saying you'll make thousands of dollars a month (although some people do), but even making $10-$20 a month can be a rewarding feeling. This article will introduce you to two of the most common ways of generating additional income from your web site: Pay Per Click (PPC) and Web Affiliates. Pay Per Click (PPC) The idea behind PPC is that your site will display ads or links for other web sites. If a visitor to your site clicks on one of the links you will get paid. There are many different PPC options out there, but by far the most common one is Google Adsense. The best part about PPC is that signing up to be a "publishers" (i.e,. one that publishes the ads on a site) is FREE! That's right, you can sign up for a Google Adsense account in just a few minutes and it costs you nothing. Once you sign up you can quickly use the online tools to generate some script code that you add to your web page(s). That's it. Then when a visitor comes to your site they will see context-relevant ads and links being displayed. If one of them catches their interest and they click on it you make money. The amount of money you make per click can vary greatly depending on the content of your site and the link clicked. I've gotten has little as a penny for a click and as much as $3.76 for a click! The great part about PPC is that you really only have a little initial setup time and then you just sit back and wait for the clicks to generate you money. If you are a blogger and use Wordpress there are several plug-ins available that will allow you to display Google Adsense ads on your blog. Web Affiliates The other money generation option I want to present is web affiliates. The world of web affiliates is huge. It seems that almost every business on the Internet offers an affiliate program. An affiliate program is when the business allows other people to market their products or services. If you send them a customer that buys something then the business will pay you a portion of the money or a fixed fee. Just like with PPC, the great part about affiliate programs is that there is no cost to you. When it comes to web affiliate programs you have two basic paths you can take. You can search out companies that seem to fit with the theme of your site and see if they offer an affiliate program, or you can sign up for an account (for no cost) with a large affiliate marketing company like Commission Junction, Clickbank, Share-a-Sale, and so on. There are certainly some difference between the affiliate companies I listed, but the common feature is that they have already found a bunch of companies with affiliate programs and they provide an easy way to search for what you want. Once you've found a few companies of interest and established an affiliate relationship with them, you can get links and banners from them. You take the links and/or banners and add them to your web site. If a visitor to your site clicks on one of the links or banners and ultimately purchases something from the company, the company will pay you. This is different than PPC, which pays you just when the person clicks the link. The upside of affiliates is that when you do make money it can be quite a bit more. I have some affiliate relationships that pay over $30 for each new customer that comes from my site. Not bad for just displaying a link or banner! Conclusion I hope you found this information helpful and understand enough to get started making some extra money. It really isn't that difficult and you might as well try to make a few dollars from something you're already doing.
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.
Web Development - How To Make The Most Of Ajax
The greatest breakthrough of the Web 2.0 age is the advances made in web page coding. Previously, an interactive web page would require you to click on the control to trigger the action, then the request would be sent to the web pages server, and you were stuck waiting for the page to reload. This is an inconvenience on your part, as you are stuck waiting. Similarly, if you are the owner of the webpage, it is an inconvenience to your users to have to wait. Furthermore, if you are offering your services or products, you are losing potential customers and gaining downtime on your webpage. But AJAX, which stands for Asynchronous JavaScript and XML, is a new type of web coding technology which allows you to create an interactive website that does not need to reload and communicate with the server every time an action is taken. For you as a web page owner, this means faster loading times for your customers, as well as more interaction with the page on the end users' side. AJAX uses a combination of Java, XML, HTML, and CSS coding, all rolled into one to create a unique and interactive web pages. Are you wondering where AJAX has been employed on the Web? Ever used Google Maps? Google Maps allows you to drag the map, zoom in and out, as well as set markers on the map without the need to bee constantly interacting with Google's server. If you want to create a unique and interactive webpage with less loading time, allowing your members to view more in less time, AJAX coding is the way to go.
|
* About Archives
Categories:
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). |