Shortcut Keys

I am designing Admin pages for my web site.I am using HTML frames, VBscript, Javascript, ASP , Microsoft Access as database etc.

I want when any Administrator put focus on any perticular frame and press some shortcut keys (like CTRL+A) then in the same frame one link called 'Admin' should be visible and active which then drive Administrator in Admin area to make necessary changes.For the rest user this Admin section would not be visible at all.

View Replies


ADVERTISEMENT

Shortcut To Desktop

I'm back with my relentless questions, well it's just one question this time and hopefully the answer to this will further my ASP studies.

if you load into Internet Explorer (any version) and goto File > Send > Shortcut to Desktop, you can probally guess what will happen if you then clicked. My question is, is there a means of doing the exact same thing using ASP code?

View Replies View Related

Pointing Hyperlink To A Shortcut

Thought this question might be out of this NG's scope, there are always knowledgable people who might hava an answer. A hyperlink to a shortcut to a file returnes an empty screen, and the source code behind this empty screen is

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>

Is this supposed to be like this? How does a shortcut work? Is it possible to use shortcuts in this way? The reason fo me wanting this is I have a code which builds a link to a product's Technical Data Sheet basing on product's code. However sometimes several products share a sigle TDS file, so the ides was to use shortcut, rather then having same info stored under different filenames .

View Replies View Related

Primary Keys

Does anyone know how I can open up an entry in a microsoft access database table using its primary key through asp?

View Replies View Related

Trapping F1, F2, F3, F4, Etc. Keys

Is there a way to trap F1, F2, F3, F4 etc. keys on ASP and have our own
codes to do whatever necessary for each of those keys ?

View Replies View Related

Ascertain Primary Keys

Is it possible to ascertain which fields are the primary keys from an Access table just using asp? If so how?

View Replies View Related

Secure Session Keys

I would like to implement user authentication and session management for my
applications. I've been using solution 1 (below) for most of my
applications in the past since the target audience is mostly intranet based.

Now that I'm creating a more global application, I want to use a method that
does not require cookies, yet maintain a farily high level of security and
fault tolerance.

Is there a better way to handle this problem? What method does the big
Internet shopping companies use?

Scenario:

A user is authenticated and is given a session key. The session key is
passed to the user in an HTML page and returned to the server using a query
string. The user then copies the URL and gives it to his friend to see.
Since the URL now contains the session key, how does the server distinguish
between the authenticated user and his friend?

Solution 1:

Use an ASP session variable to store the session key between page requests.
This solution requires that the client have session cookies enabled. If the
session is not encrypted (i.e. SSL), the ASP session id is still passed via.
clear text, and is vulnerable.

Solution 2:

Use a session key that identifies the location (IP address) of the user. If
the submitted session key doesn't match the user's location, then the
session key is invalid. The session key can be passed as part of the URL
and does not require cookies. This method is vulnerable to IP spoofing, and
breaks if the user is behind a NAT server, or web caching server that masks
the true IP address.

Solution 3:

Have the session key returned to the server via an HTTP POST request. This
method does not require cookies, but is clear text and vulnerable if the
session is not encrypted. The session key is lost if the user navigates to
a page manually issuing an HTTP GET request.

View Replies View Related

Randomize Array Keys

I want to do something that should be simple, it is in php, but i can't seem to find any array functions in asp to do this. I have an array with x number of items (the x may change, could be 10/50/etc.) that will start with 1 and end with x.

For example (excuse my poor syntax):
myArray[0] = 1
myArray[1] = 2
myArray[2] = 3
myArray[3] = 4
etc.

What I want is to call a function and randomize the array as a new array, so for example:
randArray[0] = 3
randArray[1] = 1
randArray[2] = 4
randArray[3] = 2

View Replies View Related

Get Remote Registry Keys

Is it possible to get a key from the registry if a remote machine?We have three print servers (tin) serving an ERP application for different areas of the business.Currently someone has to logon and check to see if the servers are still running each morning.

However while they are running they increment a key in the registry once every second each time they poll. If I can get ASP to read this value, I should be able to setup a
webpage to monitor the situation.I've found RegObj.dll on the Microsoft site, but this
doesn't seem to work in ASP.

View Replies View Related

Creating Primary Keys

creating a script that will create a primary key base on the date today and a number ( ex. 1124204-1, 112404-2) with the last number increasing by one. the script should automatically increase the number if the key has already been used.

View Replies View Related

Accessing Keys In The AppSection Of Web.Config

I am trying to store some information (like application paths) in the web.config file of my ASP C# project. To that end I did the following: Code:

View Replies View Related

Inserting Into Table With Foreign Keys (asp)

I'm trying to insert into a table with foreign keys. The statement works in query analyzer but not when I do it in asp to insert the data from a form. Code:

View Replies View Related

Remove/Delete Keys From Cookie

I'm using cookies to maintain a shopping cart. I can find plenty of tutorials and articles on deleting a cookie, but only deleteing a single key within a cookie is harder to find...

Surely there is a more efficient way to remove a cart item from my cookie than setting it equal to "", isn't there?

I mean, technically the cookie will still hold the text cartitem1 = "", right? Which takes up unnecessary space...

View Replies View Related

Function Keys To Post A Form

I have disabled the function keys (F1-F12). I would like each funtion key to submit a form. I'm not quite sure how to tell each function key to submit (post) for me.

View Replies View Related

Insert Problem With Primary And Foreign Keys

Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Sybase][ODBC Driver]Integrity constraint violation: no primary key value for foreign key 'MemberCode' in table 'PersonMember'
/admin/Member_New-Sybase.asp, line 39

What i am doing is first i have added a record to my persons table the next step is i need to add this person id to the PersonMember table with a new MemberCode and then finally add more information to a membership table. Code:

View Replies View Related







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