Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: axLW
  • Order by date
  1. axLW

    Batch Photoshop Action. Increase Canvas Size based upon Width and Height

    Hello, I have recently discovered batch Photoshop actions. They have literally changed my life. However, I have a connundrum, there is one action that I do not know yet how to automate. I have a large collection of images. None of the images are square shaped, they are all rectangular. It...
  2. axLW

    Newbie Question

    Ok so I have basically right clicked the database in visual studio and selected 'include in project'. I then gave IUSR permissions to 'Read' from the App_Data folder which holds the database. Still cannot get it working. Website just freezes and gives runtime error. :(
  3. axLW

    Newbie Question

    OK, I'M GETTING SOMEWHERE! I'm basically following this tutorial: http://www.asp.net/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/create-the-project I create the Project. I publish the Project using 'File System' and the files are copied to my root folder. The...
  4. axLW

    Newbie Question

    Ok so as mentioned I have installed the .net module. There is now an aspnet_client directory in my root directory. I can see the default.asp page but when I try to create a default.aspx page I receive 403 forbidden access. Both page names are listed in my default document list. Anybody know...
  5. axLW

    Newbie Question

    Hello again. OK so the problem I was facing was that I did not have the .net module installed and therefore the server was giving me 404 errors when I tried to use a default.asp or default.aspx as the default page. I have now resolved this problem and can successfully view a .asp page as the...
  6. axLW

    Newbie Question

    I basically copied the entire contents of my project folder into the root folder of my webspace (including the default.aspx file) and when I viewed the page I received page not found. Not as simple as I thought it seems.
  7. axLW

    Newbie Question

    Well that's handy! I was hoping that was the case :) So I can just copy the entire contents of my Visual Studio 'Project' folder and paste it into the root of my website. Simple as that is it?
  8. axLW

    Newbie Question

    Sorry if I wasn't being clear. I have FULL access to this virtual server. I connect via Remote Desktop Connection. I am freely able to install/uninstall IIS, have full access to File Explorer and Server Manager. I can basically do anything as if it were my own server. So... if I can set up my...
  9. axLW

    Newbie Question

    At the moment I do not have Azure installed. I do however have IIS installed and Visual Studio and the website I have created within Visual studio works perfectly on my virtual server's browser as localhost.
  10. axLW

    Newbie Question

    I am using a 3rd party company (UK FAST). I basically have a virtual server with them. The nameservers for my domain name point to UK FAST. The DNS records for my domain name point to my virtual server IP address. Everything is ready for me to host the website on this virtual server.
  11. axLW

    Newbie Question

    Ok so here's my next question. I have followed the tutorial and successfully built their sample website. The website was created completely within Visual Studio (project file). The website is connected to a database, it allows users to login and register and comes with a shopping cart. In...
  12. axLW

    Newbie Question

    Hello, I have extensive experience building Classic ASP websites and uploading them to a Server via FTP. I am now looking to host my own website on my newly purchased machine (Windows Server 2012). I know how to host a normal static website. You install Web Deploy, create the website in IIS...
  13. axLW

    Session Variables Being Lost

    You know I did see that. I should have just changed it myself. Sorry for being lazy. Thanks again for the solution. If it makes the website a bit more secure it can only be a good thing. :)
  14. axLW

    Session Variables Being Lost

    Getting the following error on the bold line below: <html> <body> <% PaxName = "antony" set myconn = Server.CreateObject("ADODB.connection") connection = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &_ Server.MapPath("x\db.mdb") & ";" myconn.open (connection) set rs =...
  15. axLW

    Session Variables Being Lost

    Sorry Chris, my mind goes blank when I look at that... I don't understand it.
  16. axLW

    Session Variables Being Lost

    This is my full working insert code (with fake item names): set myconn = Server.CreateObject("ADODB.connection") connection = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &_ Server.MapPath("myDATABASEpath") & ";" myconn.open (connection) sql = "INSERT INTO myTABLE...
  17. axLW

    Session Variables Being Lost

    If I post my full code do you think you can "PARAMETERIZE" my query?
  18. axLW

    Session Variables Being Lost

    Ok, I know how to open a recordset and retrieve/display the details but I have never inputted a record using recordset. SWI do you have an example if you think that's a better option?
  19. axLW

    Session Variables Being Lost

    it's working now. used the single quote sql and change the name of my table from table to testtable. how silly of me. thanks again all.
  20. axLW

    Session Variables Being Lost

    Error#: -2147217900: Syntax error in INSERT INTO statement. This is my SQL statement: sql = "INSERT INTO table (PaxName) VALUES (" & PaxName & ")" I have tried adding single quotes like so: sql = "INSERT INTO table (PaxName) VALUES ('" & PaxName & "')" and I get the same error so obviously...

Part and Inventory Search

Back
Top