Which web design code is best for search engine optimization? HTML, Visual basic, PHP, etc. What are the pro's and...
63First off, let me say that I am not a professional Web developer. I do it for fun.
With that said, I would be suprised to find that server side Web application scripting or straight HTML had any advantages over each other. The reason is that when the bots come through to index your page they read through the HTML for the information they need. When the bot or a browser calls your page with server side scripting it will be rendered as HTML with the end result being basically the same as if your page was simply written in HTML. The only real pros and cons come in when you begin to discuss the costs which come in design, maintenance, hosting, development, and so on. Straight HTML will be the least expensive because it requires the least specialized skills and running environment, but it is also the least versitile. User interaction is limited and maintenance is more difficult because when something needs to be changed the HTML page has to be edited and then manually uploaded to the serverServer side Web application development is a very different subject that requires specialized skills, specific server environments, and is much more difficult to host for free. The positive here is that since the pages are generated when a browser calls them it is possible to write applications that allow very dynamic user interaction and content maintenance can be made very easy. These kinds of applications can also use more advanced features such as database usage. My personal preference is ASP.net using C# as background code because professionally I am a C# programmer, and I can simply use existing skills to write my Web applications. If you're interested I can show you a very simple example of some of these Server side technologies in action as well as the HTML that is generated when the page is loaded.







WeddingConsultant 4 years ago
Thanks for the answer CJensen. Your response was pretty clean-cut and easy to understand.
As far as your question at the end there- sure, can you show me a very simple example of some server side technologies in actino as well as the HTML generated by the page load?