With Microsnot technology you an do this:
<% Response.Write “Hello, World” %>
How do you output text to the browser with Ruby?
Pete
With Microsnot technology you an do this:
<% Response.Write “Hello, World” %>
How do you output text to the browser with Ruby?
Pete
On 8 Nov 2008, at 19:57, Peter A. <rails-mailing-list@andreas-
s.net> wrote:
With Microsnot technology you an do this:
<% Response.Write “Hello, World” %>
<%= “hello world” %>
Fred
Thanks Fred, that’s perfect.
Pete
Frederick C. wrote:
Fred
How do you output text to the browser with Ruby?
Pete
Posted via http://www.ruby-forum.com/.
Fred…
Maybe I am missing something here but why would you surround a straight
string in <%=“”%>. Why not just put hello world?
Norm
one quick note… <%= %> is what you use to executed embedded ruby
code and then display the output in your view. <% %> (no equals
sign) is what you use to just execute ruby code without displaying the
output in your view. so you could do something like:
<% 3.times do %>
Hello <%= currentuser.name %>
<% end %>
the <%= %> notation is what you use in a view to execute embedded
ruby code. if you literally want to just print “hello world” in your
view, then you wouldn’t need the <%= %>. however, say you want to
say “hello username” where username is the current user’s name, then
your view would look something like:
hello <%= currentuser.name %>
On 9 Nov 2008, at 17:24, Norm wrote:
<%= “hello world” %>
Fred…
Maybe I am missing something here but why would you surround a
straight string in <%=""%>. Why not just put hello world?
You wouldn’t normally, just as you wouldn’t actually put <%
Response.Write “Hello, World” %> either. It was an example.
Fred
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs