Passing A Parameter To SQL MIN() Function

From ASP I run a query using MIN(some_field/parameter) Now I need to pass this parameter to the query from ASP code. How do I do that?

Syntax like
MIN([some_field] / [])
does not work

View Replies


ADVERTISEMENT

Passing Parameter Value

I am using Ultradev to develop asp pages with Access database. With the help of some online friends & tutorials i am studying this. I need some help for the following. I am having 2 tables,

Table 1 with Company Name & Country Code
Table 2 with Country Code & Country Name.

When some one searches for a company, it should display me the Company Name along with the Country it belongs. Someone told me that it can be done by passing a parameter value from one recordset to another on the same page, but i dont know how to do this.

View Replies View Related

Passing Parameter To COM

If a com is being used at two diff places and it requires same number of inputs how can we pass inputs if number of inputs are not same on every page.

View Replies View Related

PASSING A QUERYSTRING PARAMETER

I am new to ASP.NET 2.0 and I am developing a small application which
originally consists of 2 pages. The first page displays a GridView Control
loaded with data from a sqlDataSouce. Such a GridView has a field that is a
hyperlink to the second page which is supposed to display the detail of the
record.

What I want to do is to send a QueryString Parameter to the second
page with the key to retrieve the record selected and show the information in
detail (a long description, a picture of a product, comments, price, etc.).
I have not written a single line of code (code-behind) for the first page.
How can I get the second page and send the querystring parameter?

View Replies View Related

Passing Non Existing IIS Directory To ASP Parameter

I have a web site in which 7 pages repeat once and again in thousands of folders. Why? because I want to keep, to the user view, the pretty url www.myweb.com/username/pageX.asp.

As you can imagine, this makes maintenance hard, because when I make some update, I have to run a program to spread the change to the xthousands directories.

A solution would be to change the url to www.myweb.com/pageX.asp?u=username but the url wont be so easy to remember, and probably it will not like our users.

My question is, in which way can I simulate this last behaviour, but maintaining the "pretty" url, not only for accessing, but during the navigation. The trick would be to catch the inexisting directory name and pass it to the desired page as a parameter.

View Replies View Related

Function With Optional Parameter

how can i declare a function that will accept an optional parameter?

something like:

function newFunc(strValue1, strValue2) --where strValue2 is optional.

View Replies View Related

Passing Null Value As Parameter In Update Stored Procedure

I am attempting to pass null as the input value from a series of
textboxes if the user does not input a value prior to submit. To try and do
this, I am using a vbscript function on this asp as follows:

CommentsAdd = IIf(Request.Form("Comments")="",NULL,Request.Form("Comments"))

I was hoping this would convert those emptystring textboxes to null.

Then, these variables are input in an update stored procedure called from
the same asp upon submit. This handles ntext and like fields in the table I
am updating, but a null value passed in this way for a numeric field chokes.
The error on the asp is something like, "unable to convert value of type
text to numeric". Can't null be passed as a parameter value when the field
type is numeric?

How does one pass null for a parameter's value in a stored procedure on an
asp? Am I missing something here?

View Replies View Related

Passing Parameter From ASP Web Page To Stored Procedure In SQL Server

I'm trying to pass parameters from an ASP (VBScript) web page to a Stored Procedure in SQL Server. I know how to do the Stored procedure but it's passing the parameter from the web page that is stumping me.

View Replies View Related

Pass Boolean Parameter To JS Function

I have a simple JS function that I want to return a true or false value based on the parameter passed in. At this point of time I receive the error "'True' is undefined". Here is my code:

View Replies View Related

Passing Value To Function

How do I pass a value into a function that's in an Include file? I have a file that has the following code:

View Replies View Related

Passing Variable Into Function

i have a problem when i'm passing a parameter into my function, it gives me an error saying invalid column ts Code:

View Replies View Related

Javascript Function Passing A Vb Variable

I'm trying to use a javascript function passing a vb variable. I don't understand why it doesn't work. Code:

View Replies View Related

Problem Passing Variable To Function

Here is my code:
...
dim fname
fname = rsAddwg2("file_name")
response.write("<td align=center onclick=""tst(fname);"">" & revno & "</td>")
....

I'm trying to pass te variable fname to function tst, but I keep getting this error message "Error: 'fname' is undefined. I have a feeling that there is something wrong with my syntax but I can't figure it out.

View Replies View Related

Passing A Varibale From Asp To A Javascript Function

I need to pass a variable from asp to a Javascript function, which gets invoked when the user clicks on a button. Any ideas?

View Replies View Related

Passing Binary Data To A Function In DLL

I have an asp page that uploads binary files. I am trying to pass the binary data to a function in a dll (written in c++) to process it. The file I'm testing with is the range of bytes from 0x00 to 0x51. When the data is passed to the function, it is passing it as the string "A^? ".

which is what is printed out when I do a Response.Write. How can I pass the binary data to the function? A Response.BinaryWrite prints out the correct contents of the file. Why won't it pass it as binary?

View Replies View Related

Passing Optional Values To Function

How can i pass optional values to a function? I tried this below which gave me an "Expected identifier" error:

FUNCTION cart_state_list(selectname, optional stateid as integer = 1)

If it were php here is the code

function cart_state_list($selectname, $stateid = 1)

View Replies View Related

Passing Asp Session Variable To Js Function

how to pass an asp session variable to a local variable withing a javascript function. Something like this:

var zip = <%=Session("clzip")%>

but it's the quotes around "clzip" that is throwing a syntax error I think. I've tried single quotes and no quaotes. Can't get it to work. Anyone have any ideas?

View Replies View Related

ASP Parameter

How can i pass parameter in ASP with hide
ex : default.asp?id=9
i wanna be : default.asp but the id still follow the page

View Replies View Related

Get Parameter In Url

I would like to get parameter of ASP script in URL. example : /localhost/example.asp?parameter1 . How can i to get this parameter ?

View Replies View Related

Add Parameter

I am trying to pass three parameters using this code in an asp page to an
xsl page. I keep getting the following error:

Microsoft VBScript runtime error '800a01a8'
Object required: ''

/account.asp, line 114

Any ideas what I am missing? Code:

View Replies View Related

QueryString Parameter

A MS-Access database table has 2 columns - UserID (unique) of number data type & UserName (text) along with some other columns.When users come to a particular page, say, AllUsers.asp, all the UserNames are displayed to him as hyperlinks. Based on the UserName
clicked by a user, the next page (to which the user will be taken to when he clicks any of the UserNames) will display more information about that particular UserName (which the user had clicked).Assume that the page where more info is displayed is named UserInfo.asp.
(Note that the info will also be retrieved from the DB table).

UserInfo.asp will also display the UserName the user had just clciked in AllUsers.asp.
Now for UserInfo.asp to retrieve data about the UserName the user has just clicked, I can make the links in AllUsers.asp pass the UserID as well as the UserName as a querystring value. Now whcih one will be more efficient - sending the UserID as the querystrinng value or sending the UserName as the querystring value?

View Replies View Related

Userdocument With Parameter

I can call a user document with a paramer in the IE Address bar eg:
C:Program FilesMicrosoft Visual StudioVB98docMyDocument.vbd?Parameter

I can call the Userdocument using these lines of code in ASP:

Sub Window_OnLoad
Navigate "docMyDocument.VBD"
End Sub

I have beed trying to pass it a parameter with the following syntax :
Navigate "docMyDocument.VBD?Parameter"

This does not seem to work. How do I call the userdocument in ASP with a parameter ?

View Replies View Related

Pass Parameter

I am using Crystal v7. Main report and subreport are both based on the same stored procedure. How do I pass parameters to display the report and subreport in the Crystal viewer. I can display regular (non-sub) reports fine.

View Replies View Related

Returning Parameter

I got a problem returning parameter. I am storing date using datepicker to choose my date. But when i want to delete it from the table because date is one of the primary key. it has problem when i retrieved it because it is recognized as datetime but when it display it's a text. i need 2 convert from text to date. how would declare my parameter then?

View Replies View Related

Parameter And Value Of Clients

myGetImage.asp is suppose to create a temporary file in the client side, and display in on the client web browser. myGetImage.asp needs to know the clients web browser temporary system path, in order to create the temp file. How do I get the parameter and value of clients web browser temporary system path?

View Replies View Related

Getting A CDONT Parameter

My website sends automatic emails from many (25) different places. I want to
send a second email by reading the parameters of the first one. I don't want
to have to repeat and maintain the assignment of the second email
From,To,Subject fields so I am just using an include at each point in the
code where I send an email: Code:

View Replies View Related

Checking For URL Parameter

Is it possible to do a quick check to see if you were refered to the page with URL parameters and if so perform an action?

View Replies View Related

Parameter Names

I 'd like to print out all posted parameter names and values. I'm able to print all the posted request values, but not the parameter names.

View Replies View Related

How To Pass Parameter To Script

I am trying to pass some paramters from a VBScript function to a script that writes the parameters to a text file. I have not been able to do it. Code:

View Replies View Related

ADO Parameter Of The Wrong Type

I've taken over the development of a web app written in ASP. It's not
very well coded. In the live environment it's fine, but on my local
machine it falls over whenever it tries to pass a date to a SQL Server
sproc. No idea why the person before me's been doing all this string
formatting with his dates, but anyway, the error is:

Application uses a value of the wrong type for the current operation.

The dates throughout are in mmddyyyy format, and presumably ADO
running on my local machine wants ddmmyyyy. I'm rebuilding the whole
app in C#.Net anyway so I don't think it's worth me running through
and making this jumble of code international date friendly, so my
question is, where exactly is the date format for ADO defined?
Windows? SQL Server?

View Replies View Related

Server.transfer Url W/ Parameter Help

This works:

Server.Transfer("testimonials.asp")

This does not

Server.Transfer("testimonials.asp?somevar=yes")

View Replies View Related

Server.transfer Second Parameter

I read somewhere that server.transfer had a 2nd parameter so control and input values were 'passed' to the transferred to page, but it's giving me an error of wrong number of parameters. I have IIS5, is that the problem? or is it that it's an ASP page (not ASPX)

View Replies View Related

Send Parameter To A Access DB

I have a problem that I wasn't thinking of when I did this snapshot reporting in asp. Ok here it goes. I have a Access database that has my queries and reports.

I have some queries in access that have a parameter in them, like enter first date and enter second date to give me the range of record and total for the reports. Well, this asp that I have for doing the reporting does it server side. Code:

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved