I need to use an image to submit a form that contains the SSRS parameters that get passed into the report.
Is there any way to get SSRS to not take "input type=image..." as a parameter along with all the "input type=hidden...' ones it greedly sucks in? Instead of this:
input type="submit" value="Submit"
I'm trying:
input type="image...
I am building a project management app and need some help with how to pass a parameter (I think that is how you say it). Here is what I have going on.
I have a table called "proposals" and "proposals" allow you to create multiple concepts per proposal. I have a table called "concepts" and on each "concept" the user can "comment". The w...
i'm using jpinedo.webcindario.com/scripts/paginator at my search script, but when i click on the page 2 the parameters from the first search are lost (i get my own message for "you need to type at least 2 characters")
how can i make it work?
this is my search.php:
$q = mysql_real_escape_string($_POST['q']);
$option = mysql_real_escape_...
Hello,
I have been trying to find a better Tokyo Cabinet (or Tokyo Tyrant) configuration for my application, but I don't know exactly how. I know what some parameters mean but I want to have a fine tuning control, so I need to know the impact of each one. The Tokyo documentation is really good but not at this point. Does any one can hel...
In the vs2008 query builder, I’m trying to make a query that gets a parameter for the "TOP" Command, but it won't let me, and it say's "Error in top expression"
Works:
SELECT TOP 5 * FROM dbo.SomeTable
WHERE SomeColumn = SomeValue
Doesn't Work:
SELECT TOP @param1 * FROM dbo.SomeTable
WHERE SomeColumn = SomeValue
...
Hello all,
I'm trying to pass local variables to an inline function in javascript and have that (inline) function manipulate those variables, then be able to access the changed variable values in the containing function. Is this even possible? Here's a sample of the code I'm working with:
function addArtists(artist, request, origE...
-Xms is to specify initial heap size or minimum heap size?
I see lot of places with lot of different answers. Some like second answer here, say that it is for initial heap and some like here say that its minimum heap size.
Or is it that the minimum size itself is the initial size?
...
I am writing a ASP.NET queue processor. Users will login and upload data files to the site, and then click to start processing the data files.
I have a Windows Service on the system that waits for items to arrive in the queue and processes them. So far everything works except the items in the queue seem to get lost. I believe the sta...
I need to return Russian text from a SQL Server 2005 database table.
In the following example which is a simple way of describing my dilemma, the @Test variable will print out question marks:
DECLARE @Test nvarchar(max)
SET @Test = 'Баннер'
PRINT @Test
(Note that the @Test value is Russian text, for those who don't have the font ins...
when I include jsp either by jsp:include or by s:include and specify parameters - they are perfectly accessible by EL ${param.XXX} but not by OGNL %{#parameters.XXX}. WHY??? What should I use instead in struts tags?
...
I'm trying to pass two parameters to a JavaScript function.
Unfortunately this give me error.
Here is the function
function load(do,div)
{
var do;
var div;
document.getElementById('spinner').innerHTML = '<img src=\'/images/spinner.gif\'>';
$('#'+div).load('rpc.php?'+do,
function()
...
Hi, I am currently trying to code a link so I do not need to enter the values everything I need to check for my registered mails.
Example here is
http://singpost.com/ra/ra%5Farticle%5Fstatus.asp where u need to type RR624613237SG into the box to get the information
<INPUT type=submit class=buttons name=go value="Track" on...
Hello, I'm building my own framework, and I'm trying to pass a parameter to a static method. For some reason, the parameter is not getting passed. Here is the code:
Front.php:
if(URI::get(0) === "")
URI.php:
public static function get($index)
{
die($index);
if(!filter_var($index, FILTER_VALIDATE_INT)) {
...
I have a HTML form that truncates the action parameter after the "?" mark - which is NOT the desired behavior I am looking for.
Here is a representative HTML snippet:
<form action="http://spufalcons.com/index.aspx?tab=gymnastics&path=gym">
<input type="submit" value="SPU Gymnastics"/>
</form>
In this case, the submit butto...
Hi!
I´m using MoQ to test some controllers I have but i'm not being able to set the expectations. This is the code I have:
var rep = new Mock<IUserRepository>();
rep.Setup(r => r.Save());
The problem is that, my Save() method expects a User object which I cannot set in the expectation because a instance of it will be ...
There are many very low-level parameters measured by PCs and their processors (e.g. core temperatures, fan-speeds, voltage levels at various parts of the motherboard and processor internals) which are available and displayed by the BIOS, and by some aaplication programs. How does one access these low-level (real-time) data via Delphi? Is...
How can I send parameters to my function?
- (void)alertURL {
NSLog(@"%@",url);
}
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
alertURL(url);
return YES;
}
If there is anything else wrong, please tell me :)
...
On the Details view I want to display a grid from other table. How to implement it better? I'm trying to do it in a such a way (error: Cannot implicitly convert type 'void' to 'object'):
<%= Html.RenderPartial("~/Views/Appartament/Index.ascx", new { id = Model.blockhouse_id })%>
Here is the code from details view:
<%@ Page Title=""...
How would you fix the following bad code that passes too many parameters around?
void helper1(int p1, int p3, int p5, int p7, int p9, int p10) {
// ...
}
void helper2(int p1, int p2, int p3, int p5, int p6, int p7, int p9, int p10) {
// ...
}
void foo(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8,
int p9...
How do you add a record if you send as a parameter to a function?
struct record {
char name[20];
int nr;
};
void AddRecord(struct record **p_allRecs, int p_size);
int main() {
struct record *allRecs;
/* putting in some records manually, size++... */
allRecs = (struct record *)malloc(size*sizeof(struct record));
}
AddRecord(&allRecs,...