How The Password Is Posted From The Client To IIS?

how the password is posted from the client to IIS? is encripted? or ... plain-text...? could it easily be decripted or viewed ?

View Replies


ADVERTISEMENT

How Do I Run A Script Only Once When POSTed Twice?

Some of you have followed with me through this whole thing...I'm so close to done...

I'm using PayPal IPN to POST transaction data to my script which inserts the data into my database.

Everything is working just fine now, except for one small thing.

The PayPal IPN POSTs the data to the response page 2 times. I wasn't able to get an answer as to why this is, however, what it causes is for my script to insert the information into my database twice. Code:

View Replies View Related

How To Use Posted Values

i have used post method to send my form values to the
same page so in that page (same page) a script will work
to show something on the document but not.I have a problem
when i try to assign the posted value i cant proceed to a
variable.The posted value could not assigned to my
variable.

What can i do to send my values to the same page and
assign the values to my variables which are on the same
page?

View Replies View Related

Posted Data

I want to return all data from a posted form.ok i know i could use request.form("nameoffield")but is there a way to retrieve all posted data in one string without specifing any names?

View Replies View Related

Posted Data

How do i get all the posted data. Suppose i have a form page (myform.html) and i am SENDING data to form.asp, how do i retrieve all data that was sent by post and by get?

View Replies View Related

Posted Data

we have an ASP to receive soap messages as follows:

Set doc = Server.CreateObject("MSXML2.DOMDocument")
doc.load(Request)

if Len(doc.xml) = 0 then
ErrorMessage(...)
exit sub
end if

The problem occured by moving from W2K / IIS 5 to W2K3 / IIS6: When posting a soap message larger then about 500 KB, Len(doc.xml) returns 0. So we are not able to transfer larger Soap messages. The same code works for W2K / IIS 5 even with sizes over 6MB. The doc.load() function returns rather quickly without any errror.

View Replies View Related

POST Variables Not Being Posted

I have a very simple form, username and password, which uses the post method. The asp page resides in the root www directory. when I submit the form, the variables are not posted, I cannot pull any info with request.form. However, if I move this script to a lower directory (/www/test for example) the form works perfectly fine.

Anyone experiece this problem? Anyone have any ideas? I am stumped and my head is sore from beating it on my desk for the past hour.

View Replies View Related

HTML <form> Value Does Not Get Posted

Basically, everything is written in ASP. Firstly, a user fills in an
online (ASP) form, and then submits it to another ASP page (e.g.
Send.asp). Now Send.asp retrieves all the form data and sends another
HTML form via an e-mail. I then receive and open the HTML email(s). Now
everything is going fine up until this point.

When I hit the submit button from the e-mail, it posts all the form
data to another ASP page.

Now this is when things start to get a little weird.

Half the time when I submit the form via Outlook 2003 message, the
other ASP page would load will all the form data intact. Every other
time, the other ASP page would load will NO form data at all; just
blank text boxes, textarea, checkboxes, etc ...

I've done a few experiment of my own in the hope of finding some
answer. So far, I've only seen this happen to Outlook 2003 and not 2000
(we have a mixed between those 2 versions).

Also, it only happens to users in the same state as where the IIS
server is located. For example, the server is located in state A, so
any users with Outlook 2003 in State A will experience this problem
half the time. Other users in State B, C, D, etc ... using Outlook 2003
does not experienc this problem. Because the link is a lot slower for
our interstate users, I'm starting to think that maybe network speed
has a part in this behaviour.

View Replies View Related

Insert From Posted Parameters

The following code doesn't throw an error so is it even executed? I cannot see how it isn't all the parameters in the INSERT statement are posted from the previous page. This is my confirm details page...

View Replies View Related

Getting Hold Of POSTED Data

You may or may not be aware of $data = <STDIN>; in Perl which basically takes all the data posted from a HTML form and puts it in to one string variable so that you can manipulate it. What's the equivalent/how would you do this in ASP?

View Replies View Related

Rewriting Posted Content

The scenario is that posted data from World Pay is to be used to construct one of two pages depending on the content of one of the posted variables. Could someone help with passing on posted data to another page. I have in mind loop which reads the posted data and reconstucts it to pass on using a redirect with a querystring - if such a thing is possible. Or is there an easier way?

View Replies View Related

Posting Only The Last 2, 3, Or 5 Records Posted

This may seem like a stupid query, I need to know how to list just the last 3 - 10 records posted im my database, also about creating multiple pages with only 15 items per page.

I figured it has something to do with record counting but am battling to get my head around this. Some of my lists are getting too long. and I want to create an index page with a few teasers. a news item or two, a new client or two etc.

View Replies View Related

Individually Password Protect Multiple Directories? Password Expiration?

I have a client who wants to password protect a learning course that is set up in modules. Each module needs to have it's own password protection so users can only access them as they progress through the course.

Each user should have their own password (for each module) and, said client would like the password to expire for the user at some (predetermined?) point. Is this possible? It seems like a lot (in terms of setup), but I don't know much about password stuff.

If it is possible, can someone give me an overview of how it works (theoretically) or where to find more specific info on setting something like this up (in ASP.net)

If it isn't possible, can someone suggest what is more reasonable in terms of protecting the modules?

View Replies View Related

Retrieving Body Of A HTTP Message Being Posted To A Listening Asp Page

I have an ASP page that sits and listens for responses sent to it by a third party. The third party simply sends a plain text delimited response in the body of the http message.

Eg: Account=2,User=92663,Pass=OK,Action=5

What I can't figure out on my listening page, is how to capture the body of the message being posted to it, so that i can then manipulate the delimited string, and split it up into the variables for later use.

How do i get access to the body of the http page? I thought perhaps using WinHTTP, but it looks like it only works when your page goes looking for a web page, and not when a page is being submitted to it, like in this case.

View Replies View Related

Password Sessions - Prompt Password Change

I created sessions to authenticate username and password. How can I utilize this same script to alert the user to change password at 3rd login? In other words when a user logs into a site after the 3 or 4th time which ever, they are prompted to change their password. Code:

View Replies View Related

Client IP

I try to use script to get client IP

<%
dim IPAddr
IPAddr = Request.ServerVariables("remote_addr")
Response.Write("Your IP Address is " & IPAddr)
%>

but script return IP of Web site, not CLIENT and not null value!
My site is hosted on W2003 server SP1, IIS, ISA
I'm only using ASP no ASP.NET

View Replies View Related

Client Via Asp

I've been lurking and searching for a while and hope someday to contribute to the forums.
My question though it may seem strange is this.
Is it possible to run a compiled VB app on the client machine that is called from an asp app running on an intranet server?
Intranet server pushes asp to client's web browser.
Client clicks on a link that somehow runs the process on the client machine.
I realize this is not what asp is meant to do but I do have some applications that could be integrated into the company intranet fairly easily if this is possible. A re-write in asp would be labor intensive. It is simple enough for me to setup standard folders on the clients that require these apps

View Replies View Related

What URL Did Client Come From

I have 2 URL's like this:

xy.abc.com
yz.abc.com

They bolth point to an IP where page1.asp is the default. Hosted on a IIS 6
server.

What code do I use inside page1.asp to determine which of the 2 sites above
the user used to access page1.asp.

View Replies View Related

Db.mdb Password With Asp

where do you enter in the password for the connection to use?

set objConn = server.createObject("ADODB.CONNECTION")
objConn.Provider="Microsoft.Jet.OLEDB.4.0";"Password"

?

View Replies View Related

Nt Password

I am logged into nt and running an asp page.

I know that I can get my username from the server variable LOGON_USER or
AUTH_USER but the AUTH_PASSWORD seems to be empty.

Is there a way to retreive the current logged passsword

View Replies View Related

IIS/OWA Password

I just setup a passwrod button in Outlook Web Access by using the IISADMPWD directory in IIS.I have a few problems.can u solve it.

1. I would like the account section to be automatically filled by IIS.
2. I would like the back button to actually be a button not a link.

View Replies View Related

Learning Client Ip

how can i learn client ip who connect my site..

request.ServerVariables("REMOTE_ADDR") with this i learn my server ip..

View Replies View Related

Client Scripting

The following HTML exists on a page in Internet Explorer v6:

<BODY>
<FORM action="x" method="post" name="Form1">
<INPUT type="hidden" name="key" />
<INPUT type="submit" value="Go" />
</FORM>
</BODY>

What would be the correct VBScript or JavaScript syntax to:
A. Set the value of the key field to "ABC"
B. Submit the form to the server

View Replies View Related

Downloading To Client From ASP

I am developing an app that has a reporting function
which displays the non-PDF reports. One of the users
wishes to have the reports saved to his machine as PDFs.

The app can convert the reports, and save to the server
with no problem (uses a component for this). The problem
is, figuring out how to save the reports to the client.

The ideal approach would be to have the app save the
reports to his desktop, like some of those stupid casino
sites save their shortcut links.

However, I would settle for just just being able to force
the "download" dialog to display, instead of opening
Acrobat when the app attempts to send the report to the
client.

View Replies View Related

How To Get Client Email?

im setting up a database email for my job and i still need a little help. Thx for those who helped me out for past touble...

Well, im now at the step of email deletion from the list and im using a simple script for that (cuz im new to programming).

After the customer received the email, i want him to be able to unsubscribe to my newsletter with a click on a link which lead to a delemail.asp page where the script is. Code:

View Replies View Related

How Can Get Client Ip Address

how can i find the ip address of a client?

View Replies View Related

Streaming XLS To The Client

I have a page which allows the user to open one of several spreadsheets by
streaming the XLS to the client.

On my development site, everything appears to work fine. On the live site,
it works fine for the vast majority of users, but not for my colleague & I.

When this page is called with the correct inputs, the standard
Open/Save/Cancel/More Info dialog should appear. In the dialog, it gives the
following details:

Filename: Gothenburg Sweden.xls
File type: Microsoft Excel Spreadsheet
From: Servername

Clicking on open, means that the file will be opened in the local copy of
Excel; this works for most people, except one colleague and myself. In our
case, after clicking on Open, we get the following error msg:

"Internet Explorer cannot open travel.asp?journey=1 from <servername>
Internet Explorer was not able to open this internet site. The requested
site is either unavailable or cannot be found. Please try again later."

Anybody got any ideas about this? Code:

View Replies View Related

Client Entries

I want to validate client entries into textbox,checkbox
controls etc. can u do this with asp. Like, is there
onchange and onclick and so on for these controls?

View Replies View Related

Client Intranet

I'm currently working on an Intranet for one of our clients. I'm developing a user directory for them using a SQL Server database.
My client has provided me with the information to connect to the server remotely via windows remote desktop connection. I would like to know how I go about getting Dreamweaver to connect to the database?
Will I have to create a database locally and then publish the local database onto their server or, can I create the database on their server and using DW to connect to it?

View Replies View Related

Client Side

This has happened before and it was due the connection string not being set
in VB. My question is, when I try to reconnect can I use a different
connection string on the client than I have on the server, I wonder because
not all my connection strings are not equal.

Some of my database paths are in Access and the rest are in SQL. That means I have to retry several times before a scrip timeout occurs. If you have read this far then you are an idiot, but the rest of the database seems to work just fine. In fact I can
pull all fields out with no problem. It is just that connection string that
has resulted in causing my pages not to post.

View Replies View Related

How To Use ActiveX For Client PC Using ASP

I have created one ActiveX DLL in VB that has one public function
("GetClientCPUID") which will return a string of the CPUID. I want to use
this to get the clients CPUID and retuern to webserver. I am new to using
activeX in client side.

In Asp how can I send this ActiveX to client browser? (I will instruct my
users to allow this activeX). Is there a way I will execute this activeX in
clients PC and get the return value and return to the server for my
processing? Please suggest the ways that I can do this.

Also suggest what are the situations that I should know before I proceed. I
think there will might a issue when I upgrade the activeX and the client
those are using the current one may face problem so I think I will need a
way to uninstall the register the new one. Code:

View Replies View Related

Client IP Address

how to get client IP address in asp i know there a variable that can get user IP address but which i forgot already, anyone here can tell me

View Replies View Related

Add Client Side

I want to add clinet side javascript on the asp:dropdownlist's onchecked changed event how i do this does any one have any idea.i use the following method in vb.net code behind file

dropdownlist1.Attribuets.add("onCheckedChanged","javascript:aa()")

and see that when i change the option in the list the javascript method aa not fired.

View Replies View Related







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