Putting Variable In Parameter

Is it possible to put a variable in parameter for a URL? I'm looking to have a page with an input box and a link. When someone puts in a value in the input box and clicks the link it will take the value and pass it through the link to an asp page.

example:

Employee Name <input type="text" name="Tname" size="20">
<a href="emp_info.asp?e_num= Tname.value">Employee Info </a>

How can I get this to work?

View Replies


ADVERTISEMENT

Putting Quotes Around A Variable...

I'm practicing making cookies and I've run into a small problem. I'm following this

Response.Cookies("name") = "Suzy Q."

I'm not using a physical, I want to load the information from a variable. all my variables that are not using letters work fine.

i've tried this: Code:

Response.Cookies("attyname")=attyname

and it will not get inserted into the cookie. how do i get the quotes around it like my example?

View Replies View Related

Putting Current URL In A Session Variable

Is there any way of setting the URL of the current page in a session
variable?

I want to do this so I can create links and redirects back to the page on
which the user invokes a particular procedure.

View Replies View Related

Multiple Word Variable Into "Value" Parameter

I've run into this before, but have simply changed my plans to avoid it. This time, I'd like to solve it if I could.

Basically, I have a recordset being placed into a variable. Then, I am building a form, and trying to insert the existing value in the database in to the "value" parameter of an input tag.

var = statusRS("status_text")

<form action="something.asp" method="POST">
<input type="text" value=<%= var %>
</form>

My problem is when the variable contains more than one word. Only one word appears in the text field on page load.

View Replies View Related

Putting '/'

I have a form with '/' in some of the field names, when I pass through to
the next page the field name comes back as though it's been htmlencoded, so
getting the value out of the field I need to convert this back to '/' with
the replace (same problem if I have a ',' in the name)
Is there an easy way to htmldecode or something what it converted to the
encoded versions? (I have written a short function to basically do all my
replaces for me, but I am guessing this isn't the ideal solution)

View Replies View Related

Putting Asp And Javascript Together

I have a database table where I managed to add with ASP an extra column which breaks down the previous column "text_data" and counts the number of words: Code:

View Replies View Related

Putting A Pause Into ASP?

I have an app that I want to send out an email to each user in our member
list giving them their username & pw, but I don't want to overwhelm my mail
server since there are over 1000 users in my database.

I don't want to overwhelm my web server, either, having this app hog all
resources.

Luckily, I do have two processors running in this web server.
Note: web server and mail server are different boxes.

So... what kind of pause routine would you all put into my VBscript ASP
within the loop that sends out emails to all users?

View Replies View Related

Putting A # In A Href With The ?

If you have a href such as this,

href="somepage.asp?home=alpha&street=beta, how would you include a reference to a bookmark on that page, such as <li id="bookmark">Some List Item</li>

View Replies View Related

Putting Button

Is it possible to put the logoff/shutdown/restart buttons on an ASP page or something similar? If so can anyone point me in the direction of some code or where I can read how to do it?

View Replies View Related

Putting A Delay Into A Loop ?

I have an application which loops through several thousand subscriber
records, compares each subscriber's requirements to a database of
businesses for sale, and then prepares and mails off an email
containing info from the database that the client is interested in.

Problem is that the ASP file exits as soon as it has sent about 50 or
so records to the Mercury/32 mail server on the local Ethernet. No
error message or program execution issues noticed. I then delete the
first 100 or so subscriber records and set the file off again. In the
loop thru the next 100 subscribers it prepares an email for approx
every second subscriber, then seems to hit this 50 max limit and
terminates again. Driving me crazy.

I figure that somewhere there's a queue building up which maxes
something out and causes some low level termination. To test that,
I'd like to build something into the loop thru the subscriber file
that causes a delay of 10 seconds or so before the loop starts again.

Code:

View Replies View Related

Putting Database On Server

My database and ASPs are currently on my local server and now I want to put it on the company's server.

Any pointers how can I do that? Do I need to keep both the ASP's as well as the database on the server?

View Replies View Related

Putting In Images From Database

i am trying to put in images from the database and using something like:

<img src="I:/in_uni/<% response.write rs.fields('Image') %>">

but it isnt working.

also tried in:

<img src="http://cms-stu-iis.gre.ac.uk/ck227/test/in_uni/<% rs.fields('Image') %>">

but it still aint working!

View Replies View Related

Aviod Putting Url-information

We have two applications for one system. The first application is a vb-app
and the second is a web-app.

From the vb-app users have the possibility to enter right into the web-app.
The vb-app is creating an appropriate url and opens the web-browser with
this. The url contains user-information like user name and password. We
don't want this url-information to be stored in the history-list, because
then advanced users can find passwords etc here and that's not so good.

View Replies View Related

Putting Data Back

I am retrieving data from html form, perform some math. calculations on it and now i need to put this data back to some presentable form to display in asp.Earlier I get the data from FORM in text format, convert it into double value, now want to put it back in text format for dispal.

View Replies View Related

Putting Records Into Tables

I'm trying to put my data from Access DB into a table, but, where I know how to do it creating one row per record, what I'm wanting to do is essentially extract each record into 1 cell, and then have the next record in the next cell, creating a table 2xn in size.

The data I'm getting for each record is a URL & a file location, to create an image hyperlink for each record, and need the images to appear in a table 2 columns x however many rows required.

View Replies View Related

Putting One Line Of Code On Different Lines

I know this is Visual basic code, but the response should be global. I one line of code that stretches from here to Mars. Infact, it was used to guide the last probe there. How do I make it go over seperate lines? Code:

View Replies View Related

Putting A Formatted Date In A Text Box

i need to put a date of the following format: 14 June 2003 into a text box. i have seen some samples but i can't get what i want. i tried the following: <%=FormatDateTime(todaysDate,0) %> and it only rendered 00:00:00 .

View Replies View Related

Putting Session Data In A VBScript

I'm trying to create a VBScript using ASP. However I'm having
problems getting data from session variables into the right places.
The example I have copied below works, however I need to replace
"data1" and "data2" with real data from a session variable. Code:

View Replies View Related

Putting Records From Recordset Into A String?

i need to put the records i'm getting from my query into a string, can someone tell me how to do this.

i've tried GetString, but thats not what i'm looking for, my query pulls up ID's and i need to put these into a string so i can split them up to be used in another query.

View Replies View Related

Stopping People Putting Scripts Into Form Fields

im making a simple site where people can add comments into a shoutbox. only ive had experience of people adding in html tags and javascript to redirect people away from my site and display images etc which im not interested in.

how do i stop this from happening? is there a way to intercept the form contents and kick out the code leaving plain text? or changing the code so it displays the real code using &lt; and &gt; ?

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

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

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

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

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







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