On Tue, Mar 1, 2011 at 2:31 AM, Karthikeyan <[email protected]> wrote:
> OK, you put HTML and CSS code into a file and name it something.html , > save it and open in a browser and you see a beautiful web page. > > Continuing with what Karthikeyan said , you will see a static beautiful page, like a MS word document it will always look the same as long as you dont edit it. If this was how gmail worked there would be a html document for each user and each action the user can do ( hundreds of millions), but that is not the case. Programed on the server side is not a fixed html document but instead there is the logic to build one on the fly when someone comes in to check their email, so , you only create one server side document and this creates a html document dynamically( on the fly) for each user and for each action that a user can do, that logic if programed if many different languages but ruby makes it easy and the rails framework is the one makes this easiest, and most productive. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

