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


ADVERTISEMENT

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 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 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 View Related

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 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 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

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

Submit Button Versus Regular Button

I want to understand the difference between submit button and regular button: <input type="submit"> and <input type="button">. My understanding is that submit button will send the entire HTML form to the web server, but regular button won't.

I have a problem that needs to pass HTML elements data back and forth in several ASP pages. I am using regular button to do that. But what's the approaches?

View Replies View Related

Button

i wonder how to execute vbscript when user presses image .is it possible ... because i don't like the ordinary. Code:

<INPUT TYPE="SUBMIT" VALUE="Submit Information">

View Replies View Related

About Button

<input type=button class="btn" name=edit value="Edit" onclick="self.location='admin_category_subsub.asp?c=<%=trim(server.urlencode(rs("cat_name")))%>&c_id=<%=rs("subsub_cat_id")%>'">

actually this is an example of a button called "Edit",however i am not sure of something.
what does this c=<%=trim(server.urlencode(rs("cat_name")))%>&c_id=<%=rs("subsub_cat_id")%>'"> mean??

and the "cat_name" and "subsub_cat_id" is it from the database table?

View Replies View Related

Where's The Off Button

i has installed IIS on Win2k Pro to test some horrible .asp stuff. I, er, he also has phptriad installed and rather like Apache as his localhost server from time to time. How can he switch IIS off?

View Replies View Related

ASP Select All Button

I have a list box that populates from db, and I would like to have a button that selects all items with on click.

View Replies View Related

Submit Button

I have a submit button - I would like it to submit and then I would go to the next page when the submit button is pressed.

View Replies View Related

Specify Default Button

I want to make it so that when the user is looking at a rendered ASP page
and they hit the ENTER key, one of the buttons on the form gets "clicked".
In other words I want for the user to not have to click on the button, and
just hit ENTER instead. How do I specify the button?

View Replies View Related

Vb 6 Option Button

I am trying to get a font of a label to change to times new roman when an option button is clicked, i have tried this:

Private Sub optHigh_Click()
lblHeading.FontName=Times New Roman

End Sub

This is wrong but i cant work out how to get the font to change,

View Replies View Related

Moving Button

Does anyone know how to code a button that when hovered over moves. Then maybe on the 3rd roll over it will not move and actually allow the user to select it?????

View Replies View Related

Command Button

<INPUT TYPE="SUBMIT" VALUE="New Message" Style="Width:100px">

How can I change the font type and font size of value="New Message"?
Except create a customized button in photoshop as an image file.

View Replies View Related

Submit Button

i am having problem with my submit function. When i refresh my page or select an option from the drop down list it is submiting the values into the database where it should submit when i click the submit values. Another problem is tat wad ever values i submit it is appearing with comma at the beginning of the value in the database.

View Replies View Related

Browse Button

I'm using Frontpage to Design the page and .NET to edit the code behind it.
Is there an easy way, like a button, or some simple syntax to add a button to "browse PC" where when the user clicks on the button it opens up that standard HardDrive browse box and you can select a file?
And question 2, can you do directory reads where you open a directory and then just keep reading through each file in the directory till you get to the end?

View Replies View Related

Submit Button

I have a question about using a image as a submit button. Basically I have:

<INPUT="image" SRC="c:whateverwhateverutton.jpg" NAME="Login">

Now I have two different buttons in one form. I trying to figure out how to get the page to know what button was pushed, and then do a set of actions. Such as:

If button1 is pushed then
blah
end if
if button2 is pushed then
blah
end if

Thats the basic pseudo code for what Im trying to do. Keep in mind this is a image button.

View Replies View Related

Image Button

I have been using an image instead of a button to submit a form, this works fine within firefox, however when i come to test it in IE6 it doesnt submit the form... If i add a proper button then it works fine, however in keeping with the look and feel of the site it is important that i use an image.
the code i have is as follows:

Code:
<input type="image" name="Submit" value="Submit" src="images/proceed.gif" alt="Proceed to the next step" width="221" height="29" border="0" />
The form posts back to the same page to do some validation routines, but when it is not an image then as i have said in IE it doesnt work

View Replies View Related







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