i have read a few articles saying that you can run IIS on XP home but it does not look too reliable to me and am not too willing to try, so is there an alternative set-up i can use to test my ASP before uploading?
i say this as all ftp hosts seem to want your code pre-tested before uploading .
Our home page name is index.html index html include left and right html. so google get left or right html. and we would like if someone click the page then open home page. ( if opening page is not in frame then redirect ndex.html )
Im building a website for a mate they want a news story on the front page that is pulled through from a database.Just want to know if i can make this page called index.asp - will it be recognised as the index page?
is it possible to run asp on win xp home edi? i know that it does not have the iis, but i was wondering if there is any other third party softwares that allow to achieve this.cheers.
I have got the following PHP code which I am trying to convert to ASP.cant find a replace function for Unset in asp which will discard the variable if ($categoryid == "all") { $sql = "SELECT * FROM products where shopinspection=$shopinspection"; unset($HTTP_POST_VARS['categoryid']); unset($HTTP_POST_VARS['shopinspection']); } else { $sql = "SELECT * FROM products where categoryid = $categoryid"; unset($HTTP_POST_VARS['categoryid']); } unset($HTTP_POST_VARS['Submit']); while (list($key, $value) = each($HTTP_POST_VARS)) { if ($value != "" ) { $sql = $sql .=" AND $key=$value"; //$sql = $sql .=" AND solesource = $solesource"; //echo "<strong>$value</strong>";
I'm running windows XP and went to add "IIS 5.0" from the add windows components but it wasn't there,does anyone here know what i should do? One more question, is it still worth learning ASP since ASP.NET came out?
I' currently making a time and movement site for our department.I would like for the user to use a login page,once they log in I want them to be directed to a personnal home page that allows to add and view their current week movements.How would I proceed I built a login page, once the login is validated it redirects to home.aspx. In the home aspx what would the coding for the home page to retreive the date related to the particular employee without having the employee to retypr his login information in a search form.
is there a way to install the IIS server on Windows XP home? Like the one you get wih Windows XP Proffesional CD. I have found this website which has a method of doing it, although it says here tha Microsoft says you need Windows XP Professional to install this and that this is only a workaround I wasn't sure if this was true or not.
The main reason I thought of this was because I would have thought Microsoft would have had a file you can download from their website or some thing like that, although I haven't found any other way of doing this yet.
I'm looking to do custom homepages based on user login, something like googles homepage, But not as drastic. I'm not sure how i should go about this. any suggestions on the thought process would be nice .
I have Windows XP Home edition. Is there any way I can Install IIS in my machine (without upgrading to XP Pro)? I need to run and test my asp programs utilizing MS Accsess and SQL Server.
Could someone lead me in the direction on how to set up server on my home PC so I can view my ASP pages, rather than uploading them to host server to view. The easiest and less painful way.
I am trying to play with ASP on my home computer. I am placing a "hello.asp" page with simple code in C:Inetpub or C:Inetpubwwwroot and running it and am getting:
The page cannot be displayed. The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings. I am running Windows 2000 Server, and I just stripped off Apache/ MySQL. I am not sure what I need to do to allow myself to run ASP pages on my home computer.
Looking for a way to switch between submit buttons. The default will be "start" and when the tech clicks on that, the button will start a timer, which I have already set.
The button then will switch to "stop" and when a tech has completed a job and clicks "stop" the timer will also stop and switch the button back to start.
I know how to track the time for each tech that starts and stops a job. I need a jumpstart on how to switch onclicks for two buttons.
I would like to set up an ASP page that sends an e-mail, but the server I'm working on doesn't have CDONTS installed for security reasons. I don't have any control over the server. Are there any alternatives to using CDONTS that will work or a better option?
Is there any other way or trick to include an asp file in my ASP file than the classic html #include. In fact my filename (which is to be included) will be coming from database and #include statement doesn't support any kind of variables.
I know this is not a core .asp issue, but I'll try anyway. I've used the TEXTAREA element for a while, but as you know it's limited when it comes to formating part of the text inside a TEXTAREA.Does anyone have expirience using other text cointainer objects (Java/ActiveX), which is easy to use and easy to read values from when sending a form to a procedure .asp page?
I'm using ASP and I need to generate a ZIP file that contains a list of files that I'm pulling from a database. I've determined WinZip's command line parameters so that I can use it, the problem is I'm unsure how to run WinZip on the server.
Set WshShell = Server.CreateObject("WScript.Shell")
WshShell.Run("c:winzip.exe")
Assuming this would work, how do I get the process to terminate upon completion? I can't have 20-30 WinZip applications running on the server, I need it to handle what I send to it and then close. Maybe I'm taking the entirely wrong approach here.
I've been meaning to setup a website on my computer again. I have calbe so its a static IP
i remember I downloaded three three programs but i can't remember exactly what they were or where I got them
1.)I think i had a sql database: mysql I think
2.)Then i think i had php but where can i get that for free?
3.) finally i think i had some kinda of board program using the sql database bbforums or something
Finally, I think i found out latter that all three are available in one download that preconfigures everything (configuring the stuff was a real pain in the butt)
I'm very new to ASP, but developing a dynamic website using ASP and an Access dbase.
I've created a template page (index.asp) and I plan for this to be the only page required for the whole site as the rest of the content will be loaded dynamically based on variables in the querystring. For example, if the querystring was: index.asp?PageStr=home, the home page content would load, if it was index.asp?PageStr=contact, the contact content would load.
My question is this. If someone went to my domain xyz.com there would be no default variable in the querystring and no content would load. Is there a way round having to create two pages - a default home page and another page for everything else?
I have an asp file that gathers info from a form and sends to the database. im now changing the location of the database from the root path. I think that because of this i cannot use Server.MapPath method of sending data.
Coudl someone please help me out and let me know how i would change the code? Im quite new to this as you could probably see. Code:
Is there an alternative for CDONTS.NewMail for sending email? according to this article , CDONTS.NewMail works only on Windows NT/2000 Operating Systems.
Is there an alternative class that works on Windows XP to send email?
I would like to know if there is alterntiave to using Select Case?I have over 80 files that a user can select from a drop down list and 'read'. Rather than writing out 80+ lines with INC files, what is the other less code option?