An ASP page has a variable named iCounter whose initial value is 0. This ASP page has a drop-down list. When an option is selected from the drop-down list, I want the value of the iCounter variable to increment by 1. For e.g. when an option is first selcted, iCounter should be equal to 1. When an option is selected again, iCounter should be equal
to 2 so on & so forth. How do I do this?
i hv created function that used to increment ID. The max id is like Q01946. once user click on the "new" button, the id suppose to be Q01947. but wat i get is Q1947. could anybody know how to keep/maintain the "0" value
I have created a field which is in access database so user cant see on web page so whenever user submit their form I want to increment that field value by one ..
NOTE: This is field is not primary key and its data type is "text"
I have an asp page that I'm trying to make, that will allow users to start a new time sheet. when doing this, the users will select a pay period start and end date. I have a table with the days of the week for two weeks (i.e. mon1-sun2). When users select the start and end dates I want to populate these fields with auto increment... Soo my question is, does anyone know how you auto increment the date using ASP?
I use asp to execute an INSERT query into a table that has an auto-increment column can i get the value of the auto-increment column with a function in asp?
I'm trying to implement a feature where when user click on a button, a table will be displayed in the page and when second time the user clikc on the same button, the other table will be displayed, and so on. can anyone give me an idea on how to implement this?
If today date was 06/10/2003 how do i increment it to 07/10/2003? And also to increase time 4 hours from it's current time. E.g Time Now = 23:30 => Increment 4 hous = 03:30
i have a field with a list of wrong ID (random) and i wish to replac them with a sequential (auto-increment) value. how to remove the valu and to add in the sequential ID?
When the user clicks a button, I want to increment a server side variable by 1. When the user clicks a different button, I want to decrement a server side variable by 1 only if the variable is not less than or equal to 1. Does any one know how to do this?
I've been looking for a counting script to count the number of hits to my HTM and asp web pages on my company's internal website. So far, everything I've seen only works on asp pages. Where would I find some counter code to record hits on htm(l) as well as asp pages?
I've got a little counter program written to log individual hits to a page without counting the same person twice. The problem is, it's counting the same people twice. Here's the logic:
1) Check the session to see if they've been counted. 2) If they have not been counted: - save their referrer/IP info - flag their session to say they're counted - end
But it seems that some people are being counted for every page they go to and some are not. I've included the code below just in case. Is this a server issue, a browser issue, a cookies/no cookies issue, or something else? Any help would be much appreciated. I want to have accurate counts and information for where people are coming from with as little effort as possible.
Is it possible to incorparate a Hit Counter to count the number of hits on a DIV instead of a page. Below is the code of my DIV I would like to include the code for the counter inside this DIV. If at all possible??? Code:
I want to put the counter in index.html only...i dont want counter to keep on increasing EVERY TIME the same person views my website on same day. But the next day the counter will increase for the same person who views website the next day.
I only want the counter to increase for those who is first timer , not the SAME viewer who keeps on going back to the website over and over again on same day..
so how to do asp to achieve above? I have developed my website and include counter but d ont know how to go about including counter.
I want to put rss news feeds in my site, but I only want something like 5 headlines. I try Yahoo feeds, but I get something like 30 headlines, this is way too many, I want 5. Is there a way to do this, to reduce these 30 headlines to something like 5?? Like, perhaps adding a counter to the script?
I want to add a hitcounter to my website and use following code, but whenn I want to schow the site, which contents following codes, I will become from server the message " the page cann't be found" Code:
i have a simple asp counter in my site, the counter uses a access db & cookies (so every visitor will be counted once).
in the past days the counter has gone wild & count goes from 300 in ordinary days to 1000. i guess this is because of robots, crawls, worms etc. is there any way i can count only real visitors?
I have recently enetered the world of ASP. I have a counter on my site which uses a global.asa file but it doesn't seem to work. it did for a while but doesn't now. i will atttach the files tommorow when i'm on my computer at home but in the mean time, what could be wrong?
i am also datbasing a site that will, evnetually, sell computers. it will contain all the parts for the computers and i want a drop down menu to link to them and return the prices individually and add them all up. the prices need to be returned separately so thy can go in their own table row. can this be done? if so, how?
I have built myself a little hit counter. It's just a few lines of VBScript that submit the page name and date to an SQL Server db.It executes every time the page is accessed. I am a little concerned that this method may put strain on the server given that the home page averages about 3000 hits a week.I wanted to do it this way because it allows me to use the date field to analyse the usage on a weekly or monthly basis. Does anyone know if this will put too much strain on the server? Perhaps this post is better suited to a db forum. Really I'm just interested to know under what circumstances the db server will struggle.
I am running the WebService / CurrentConnections performance counter. It works fine for one site I'm looking at, but not for another. The one it doesn't work for, the polling vertical red line doesn't even move. Is there a setting somewhere that controls whether a web site can be be 'polled' or not? I am using Windows Server 2003 Standard Edition.
im after adding a hit counter to my front page but having the details of how many visits the site has had being displayed in my admin section. any assitance on how i go about doing this?
<% Function Totaldownloads() Application("downloads")=Application("downloads")+1 Totaldownloads = CInt(Application("downloads")) End Function %>
However it seems that this code runs by itself allway's updating by 1, even when the Function is not called? I have other functions with the one stated above which are included on other pages, again using:-
<!--#include file="tools/functions.asp"-->
Surely the code should only run when called, not just included?
i'm having a problems as i dono how to request the value from the textbox. This is how is it. usually when we want to retrieve the value from the page we will Request.Form("txtBox"). The problem i'm having is i dono how many textbox it will be. Here is it.
I have a combobox that enable me to select how many textbox i want. For example it can select from 1 to 5. Ok when i had selected 5 then it will appear 5 textbox for me to enter the input.
The textbox is only got 1 name for the html as i create this in a counter loop. Therefore may i know how to retrieve the 5 textbox value as i need to do a checking for the input of the 5 textbox value with the database. Usually will be Request.Form("textBox") but now i have 5 values in the 1 textbox name.