Configuring ASP In Windows XP Professionl

how do i get ASP running on my windows XP professional standalone PC, I,ve Got IIS running in my machine. I,ll be working on a single website.

View Replies


ADVERTISEMENT

Configuring IE To Debug Better

I've found that, when debugging scripts on my computer, IE will give me an Error 500 message if something is wrong with the script, whereas IE on my co-worker's actually prints the line and points at the exact character that's amiss, and says what kind of error it is.

This is incredibly useful for someone who is learning like me, but we can't figure out how to make mine work that way (it's the same version on the same OS and everything).

View Replies View Related

Configuring Permissions In IIS

i had this site of mine running from my pc with duc no-ip for avoiding my ip from changing my ip. it was working fine, but i made an upgrade to my machine, so had to start all over again;

my web app works with access and asp;

i gave my .mdb total control to IUSER_myPcName and, in iis, in mmconsole, i go to my websites/properties/security and then in this window i click edit and i have:

anonimous access checked but the rest of it i'm unsure
when i try my login, i get this error msg:
Provider (0x80004005)
unspecified error
/a/login.asp, linha 53
that's the line where, in my script, i connect to odbc.

View Replies View Related

Configuring Win 2000 Server + ASP

I'm just after installing windows 2000 server. It seems to be running fine. I can log onto sites stored within etc. However I'm having major problems trying to sending email forms. I am using an asp form to send the details however I never receive them. After completing the form and submitting the user is brought to a confirmation window which displays all the form details. There are no errors howver the email is never recieved.

With the errors I cannot say if the email was sent or not. So i do not know if it is the server settings or the asp file.

Do I need to preform additional installation of configuration to get the smtp server up and running as I am only using the default settings.

View Replies View Related

Configuring IIS (5.1) For Multiple Web Sites

Could someone help me find a tutorial (or perhaps instuct me) in the proper way to configure IIS 5.1 so that I can design and test (using localhost) multiple web sites. My problem arises when I try to debug ASPs that contain virtual includes which assume that the ASP exists in the default web site.

Since my ASPs exist in subwebs within the default site rather than in the default site, the included pages are not found and my ASPs return errors. I'm sure there must be a better way to do this but so far I haven't found one.

View Replies View Related

Configuring Form For Cdonts Asp Mail

I have to ask for some help on this simple task. I have a form that I want to sent via email. I made an asp mail form/file that looks like this:

Code:

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>

<form method="POST" name="aspmail.asp" action="--WEBBOT-SELF--">
&nbsp;<p>&nbsp;</p>
<p><input type="text" name="T1" size="20"></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>

</body>

</html>

Ib have linked this form via POST to my aspmail.asp cdonts code. This looks like like this:

Code:

<%
Dim objMail
Set objMail = Server.CreateObject("CDO.Message")
Set objConfig = Server.CreateObject("CDO.Configuration")

'Configuration:
objConfig.Fields(cdoSendUsingMethod) = cdoSendUsingPort

objConfig.Fields(cdoSMTPServer)="smtp.1and1.com"
objConfig.Fields(cdoSMTPServerPort)=25
objConfig.Fields(cdoSMTPAuthenticate)=cdoBasic
objConfig.Fields(cdoSendUserName) = "mdinrune-1"
objConfig.Fields(cdoSendPassword) = "rtdhe"

'Update configuration
objConfig.Fields.Update
Set objMail.Configuration = objConfig

objMail.From ="info@justonedomain.com"
objMail.To = "kmuel@aol.net"
objMail.Subject ="Information"
objMail.TextBody="This is a test for CDO.message"
objMail.Send

If Err.Number = 0 Then
Response.Write("Mail sent!")
Else
Response.Write("Error sending mail. Code: " & Err.Number)
Err.Clear
End If
Set objMail=Nothing
Set objConfig=Nothing
%>

Can anyone point out why this is not working? It should work.

View Replies View Related

Configuring High Score List ...

We decided to switch over our servers from a SQL server to a Microsoft one. We have a Flash Pacman game on there, but the high score list didn't work after we switched servers. So, what I've got is a game that uses PHP, but I need it in ASP - Code:

View Replies View Related

Configuring SMTP To Send Email To The Recipient

It seem that I did not configure the SMTP service on a Windows 2000 server correctly because all the email is been sent to InetpubmailrootQueue directory. Do I need to install Outlook for the email to send the mail to the recipient?

View Replies View Related

Pop Up Windows

Is it possible to open a new window using ASP? If so, can you control the size and position?

View Replies View Related

Windows XP

http://www.15seconds.com/issue/020118.htm
how to Run IIS on Windows XP Home Edition

View Replies View Related

Iis For Windows

does anyone know if you can get iis for windows xp home edition i have xp pro on my desktop but only have home edition on my laptop.

View Replies View Related

Iis With Windows Xp

i intend to buy a computer with windows xp.Is there a webserver included (like iis) and if not, how to get one?

View Replies View Related

Windows XP PRO

I have windows xp professional and i am using asp on it so to give alias to the folder i right click on folder and click on webshare then give alias and type 127.0.0.1/aliasname/but its not working it takes me to other page when it dont found no ASP is working

View Replies View Related

Pop Windows

i want to do is i schedule something send it to another user,within intranet in that user's machine he should get a pop up window about the latest shedule.how can i make this happen?tell me specifically about creating this pop window of this purpose

View Replies View Related

Windows XP Pro OEM

I am going to purchase Windows XP Pro in order to install IIS. Is IIS included on the OEM version of the software, or is it only included on the full retail version?

View Replies View Related

New Windows

I hv asp page which, upon selection from a dropdown,opens a new window (target="_blank") using the selected value as the parameter (page.asp?Test=(dropdown value))

What I want to do is control the look of the new page. I have been told I need to use JavaScript to open the new window. But how do I fire the JavaScript procedure and how do I pass it the selected dropdown value?

View Replies View Related

LOG In With Windows

How can I use the windows component to log in into my site?

View Replies View Related

New Windows

During testing on my home PC running XP when any of the big blue
buttons are clicked a new web page opens. If a team is selected from
the drop-down list a new page opens with the selected team details in
it.

However when deployed live, whenever any of the buttons are clicked,
not only does the new window appear for that content, but also the new
team page window appear with an error because no team has been
selected.

Can anyone explain this, and more importantly advise how I make the
live web site function as intended and how it does when testing.

View Replies View Related

ASP In Windows CE

I've been doing some research on talking to an access database on windows CE using asp. The website listed below says I cannot use Server.Createobject So I was wondering if anyone could tell me what the usual method was for creating the database connection on the windows CE platform since the server.createobject method is not available.

View Replies View Related

Not Windows

Do asp pages work for any other OS than Windows, as they are? How can I know what is the operating system of the web server of a certain site (not mine)? I rememeber there is something I can check with asp.

View Replies View Related

CMS On Windows Hosting

Is there a Content Management System that runs on ASP Windows hosting that allows an user to go to an admin page on the website, login and make content update to the site without touching code?

I know there are lots in the Linux world. What about Windows? I know about Contribute, but that requires an install of a desktop application. Or do they have a web verison now? I want an admin web page.

View Replies View Related

Can IIS & ASP Run On Windows NT Workstation 4.0

I want to install the NT 4.0 Option pack to install the IIS web
server. Does the option pack install to get the web server working on
my Windows NT workstation running SP6a work. I want this web server to
connect to a SQL Server which is running on this NT Workstation as
well.

Please clarify what are the steps I need to follow to get the web
server running on my NT 4.0 workstation to run ASP.

View Replies View Related

C# Windows Control Lib

I have C# windows control libarary (Dll), which I could able to load them
into browser using <objecttag with following syntax (In aspx page) and user
able to see the contolr properly.

<object name="chk" id="chk" classid="http:GSIM.dll#GSIM.gsimManager"></object>

I would like to load a client C# windows control libarary (Dll) instead from
webserver. (something like OCX)
So is there way I can load .NET control from client machine?? (Assum that,
the libarary exists in client machine GAC or in physical path)

View Replies View Related

Windows NT Authentication And Asp???

Can someone tell me how I create a login page which
authenticates users against the servers user manager. I
want the login to be a form in my website not a pop up
window!

I would be grateful for any advice relating to this
subject. I have a script for windows 2000 active directory
but was wondering if you could achive the same with
windows NT 4 and IIS 4 Code:

View Replies View Related

Windows Authentication

In my CMS application (authentication = windows), I've tried to force a reauthentication after a button click by returning:

Response.StatusCode = 401;

However instead of reauthenticating once, I'm asked for 3 times despite the correct userid and password.

Is this due to certain configurations? Or is there any other alternative available to achieve the same effect?

View Replies View Related

Asp + Windows 2K Login

Does anyone have a script that will allow me to extract the current
user's logon to a Win2k machine?

View Replies View Related

Windows Authentication

If I have a website running ASP 3.0 on IIS 6 (server 2003), and am using
Integrated Windows Authentication, is there a way I can place in a session
variable something to identify the person who authenticated to the web site
so I can say right on the ASP page "Welcome UsernameHere" ??

View Replies View Related

Windows Account Name

How would I get a windows account name through ASP? Say I login with veamon, and the start menu says Bob Barker ...how would I get the Bob name...i can get the login name

View Replies View Related

Windows Key Shortcuts

i am trying to disable windows key shortcuts to my exam.asp page.i dont want the user to be allowed to be able to close the application.i have opened the page in a framless mode...nothing the user can do with the mouse. now with the keyboard...you guessed it right! i have learned through my search on the internet that VB uses winapi and delphi uses some other method! or maybe the same! i need to know how to get to do this in jscript or vbscript.
I need all closing possiblities used by the keyboard...such as Ctrl+Esc which will bring the start menu and Alt+F4 and F1 and Ctrl+Alt+Del and windows icon and anything else that gives the user the way out of my framless page

View Replies View Related

ASP.net For Windows 98se

Excuse my ignorance cause im a newbie but why can't you get asp.net download for windows 98se?

View Replies View Related

Windows Username

I have a problem with ("auth_user") in asp,I try to use windows
username and password in asp page for limitation user access to pages,
but this server variable returns empty string

View Replies View Related

ASP.NET On Windows 2000

Our current websites are hosted on Win2K Servers using classic ASP and IIS
5.0. We will be acquiring a 3rd party website that is written in ASP.NET.
Hate to sound stupid, but is it possible to run ASP.NET on Win2K or does it
need to be run under Win2003?

View Replies View Related

ASP Editor On Windows?

I need a good ASP editor on Windows.

View Replies View Related







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