0
votes
1answer
35 views
pass values from the view to the controller ruby on rails
Hi
This is my controller:
def addcar
@car = Car.new(params[:car])
render :action => "list"
end
this is my view:
<%(@allcars).each do |cell|%>
<p><%= link_to …
0
votes
1answer
33 views
undefined method `stringify_keys!’ ruby on rails
Hi
I have this code:
def addcar
@car = Car.new(params[:car])
render :action => "list"
end
<%(@allcars).each do |cell|%>
<p><%= link_to cell.to_s, :controller => …
0
votes
2answers
12 views
Ruby on Rails passing of parameters between views from link_to tag instead of submit_tags (having both on page)
Hi,
I'm creating in my index page of my ruby on rails program, a list of the most commonly searched for terms in my database and hence each time a user selects a specific category this is written to …
1
vote
1answer
21 views
Can’t get JSF input field value on JAVA backend
Hello.
I have following UI part on JSF - it's simple search form with input field and submit:
<h:form>
<h:commandButton action="#{operation.found}" value="#{msg.search}" />
…
0
votes
2answers
27 views
parameters from one page to another
Hi
if I have this on one html.erb page
<%= text_field("cars_", "name", :size => "30") %>
and
def find
@car = Car.new(params[:car_])
carsearch = @car.name
....
why is the carsearch …
0
votes
2answers
49 views
Sending information from one webform to another
i'm generating HyperLinks, all of them (depending on the circunstance, could be 1, 2 or 1000) send to the same webform:
from default.aspx
to envia.aspx
i can't use session, or anything i already …
1
vote
1answer
17 views
How can I get read all the parameters of an applet?
There's getParameter() which is fine for reading a parameter I know of.
However, should I want (for lib architecture reasons) to read all the parameters that have been passed to an applet, is there a …
0
votes
2answers
30 views
.aspx get data from. cs files?
Is databind, bind or eval... only way of getting data form code behind (server side) in ASP.NET
0
votes
3answers
128 views
How to have a function with a nullable string parameter in Go?
I'm used to Java's String where we can pass null rather than "" for special meanings, such as use a default value.
In Go, string is a primitive type, so I cannot pass nil (null) to a parameter that …
0
votes
0answers
2 views
Apache ab POST parameters
Hi, I'm running apache ab on a server using the following command
ab -n 500 -c 20 -C 'PHPSESSID=e31c8912b9b53fa6a6e88deb431e276a' -T 'text/html' -p post.txt http://localhost/test/receivePOST
The …
0
votes
2answers
21 views
Ruby on Rails passing of parameters between views (not all being transferred)
Hi, I've been trying to trace this error for nearly 2 days now and i can't seem to understand what is going wrong. I'll explain:
I have 2 views (.html.erb format)
ViewA has the following
<% …
2
votes
1answer
164 views
C# function parameter with @ before name [closed]
Possible Duplicates:
What does the @ symbol before a variable name mean in C#?
C# prefixing parameter names with @
I've found a function parameter like
void Function(System.String[] …
1
vote
1answer
33 views
Using ASP.NET MVC SubControllers with action parameters?
I am experimenting with MvcContrib subcontrollers. Looking at the example in the source, your parent controller (HomeController) takes an action which takes the subcontroller (FirstLevelSubController) …
2
votes
7answers
125 views
C# UserControl constructor with parameters
Call me crazy, but I'm the type of guy that likes constructors with parameters (if needed), as opposed to a constructor with no parameters followed by setting properties. My thought process: if the …
0
votes
2answers
28 views
How to feeding Crystal Report 8.5 parameters from VB6.0 Application?
hi
How to feeding Crystal Report 8.5 parameters from VB6.0 Application?
