search for: advait

Displaying 5 results from an estimated 5 matches for "advait".

2007 Dec 03
0
Re: how to use render & redirect_to togethe
On Dec 3, 2007 8:37 AM, Jason Roelofs <jameskilton-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > On Dec 3, 2007 8:24 AM, Advait Bellur <advait.bellur-/E1597aS9LQxFYw1CcD5bw@public.gmane.org> wrote: > > > > > Hi, > > > > I needed to know a way or method of using render and reditect_to > > methods. > > At present using them both is giving me an error that both cant be used. > &g...
2007 Oct 26
1
Working or mongrel
Hello, I have started newly working on ruby on rails platform and making use of mongrel server.......I would like to know how does mongrel communicate with seagull database. I could not find any reverent links only for mongrel or the combined ..... Kindly do help me Thank You Advait -- Posted via http://www.ruby-forum.com/.
2007 Aug 27
1
Send_file() method for downloading any file
HI, I need to know how to download any file using send_file() method.The code I have shown below is for a specific file........how ever I need it for any file. THE CODE ........ def download_files send_file(''D:/hr/Handbook.doc'', :filename => params[:filename] , :type => ''application/octet-stream'',
2007 Oct 22
0
Focusing wedget using javascript PROBLEM
...ven page is loaded. I have two problems 1 => I would like to know if there is a general functionality written in a given application , if so in which file does it exist 2 => If I have to write this for individual pages.....that is individual rhtml page, how do I write this. Thank You Advait -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gman...
2007 Aug 24
1
How to download any file using send_file() method
HI, I am directory listing and in that listing I have certain files and sub directories, now when I click on the files it should download that particular file but I am not able to accomplish it, and I have got to use send_file() method. In the send file Code shown below I have made use of the address of one of the files directly so when I click the link of any file it downloads it. THE CODE