Displaying 8 results from an estimated 8 matches for "opensa".
Did you mean:
opens
2006 Jun 29
1
script..aculo.us - ajax not working with NTLM on windows
Sorry if this is the wrong place to post this subject.
I''m trying to implement an autocompleter input text (in asp, for the
moment) using the script.aculo.us / prototype library.
In IE (internetExplorer) it works fine.
But in FF (fireFox) it keeps asking for my user/password on every atempt
to reach the server from the AJAX call.
The site is configures with integrated security and
2006 Apr 11
2
saving controller state
Basically I''m trying to add the following functionality to a controller
when browsng data
reorder data
change numbers of rows
defining filters
etc.
for that, I need to save the state of a controller, that is, the current
order, the number of rows, the filter condition, etc.
So far now, I''m saving them to the session.
I have a load method, which loads the data from params,
2005 Oct 10
6
telephony that "just works"
Hello list,
I am looking for a way to have multiple remote Windows users download a
package and get connected to *. My idea would be that they run a simple
app, it connects without any setting to an * box (maybe via IAX) and then
people press a button to talk. It would be okay if they had to enter a
username and password, but not more than that.
Looking for such software, I keep finding
2006 Apr 07
0
what goes where on ruby on rails?
I think this subject deserves a cheat page.
Where would you put the following
1. enhacements to base classes
(like Numeric.format_integer or Time.format_shor_date)
I created files in \lib (like \lib\format.rb) and added
require "format"
in \app\controllers\application.rb
2. general helpers I want to be available to every view
I created a file in \lib (like
2006 Apr 11
2
how to order by a related class???
Let''s suppose I have a books table and an authors table.
A book belongs to an author (to put things simply)
I want to browse the book list order by the author''s name.
In sql it would be like this (to make it clear)
select
b.id,
b.title,
a.id as authors_id
a.name as authors_name
from
books as b inner join authors as a on b.authors_id = a.id
order by a.name
the problem is that
2006 Apr 18
2
ruby on rails and Micro$oft environment support - IIS & ms sql
Hi everybody
At work we''ve finally convinced the chief to develop some small project
using open source technology.
Unfortunately we are deeply involved with Micro$oft technology.
That means, windows 2003 server, IIS, MS SQL 2005 and asp.
I was thinking about recommending ruby on rails instead of asp, but I''d like
to know how well it goes with IIS and MS SQL, because for the
2006 Apr 11
6
asp''s application object rails equivalent?
In asp there''s a built''in object, Application, which behaves like the
session, but it allows you to share information among all users of the
application.
(http://www.microsoft.com/windows2000/en/server/IIs/default.asp?url=/windows2000/en/server/IIs/htm/asp/vbob6zkv.htm)
It''s just like if every user would be accessing the same session.
what is the rails equivalent?
2006 Apr 11
9
rails equivalent to asp''s Application object?
In asp you have an Application built-in object, which works just like
the Session hash, but it lets you share information among all users of a
given application.
which is the rails equivalent???
and if there isn''t, how would you implement such a thing ? (there would
be concurrency issues to take into account, in fact asp''s application
object has some lock and unlock methods