0
votes
2answers
21 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
45 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 …
0
votes
3answers
119 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 …
1
vote
1answer
15 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
29 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
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
2answers
146 views
Calling functions with parameters using SOAP with Perl
I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call says,
…
2
votes
1answer
163 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[] …
2
votes
7answers
121 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 …
1
vote
1answer
31 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) …
0
votes
2answers
26 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?
0
votes
3answers
31 views
Using Parameters in DATEADD function of a Query.
I am trying to us the DateAdd function of SQL in my Query. The problem is when I use a parameter to set the second arguement, the number argument I get an error which will say something like this:
…
1
vote
5answers
68 views
How to use generic class (or interface) in another generic class (or interface) with the same data type parameters without casting
I need the Cache class that keep the <TKey key, TValue value> pairs. And it is desirable that TKey can be any class that supports Serializable interface and TValue can be any class that …
0
votes
0answers
20 views
Adobe query string encoding
I am passing a parameter to and Adobe flex application and am passing a large encrypted token from html to the swf as a query string like parameter (as is thin given method)
This is being encoded …
