I am looking at doing a website and I normally do websites / Intranets which facilitate business process. I am doing a small scale contact lense shop for some...
Hi Stuart Take a look at candypress.com - they are very good from my experience, and prices very reasonable. I have tried others before and been disappointed.....
Hi Shailener, the Server.Mappath() gets the path of the relative path to the picture. so when u run in the local system it shows the relative exact path of the...
There are four tables in my database, three are connected with the TicketNum(Tbl_PPVResearch,Tbl_ValidDispute,tbl_Events). I create a parameter form where user...
Which part of all this is giving your trouble? Please post your code and indicate where it doesn't work. This sounds more like an SQL question than an ASP...
Hi, I have a problem with a site Im working on in Classic ASP and VBScript. I have a search page that looks up work orders from a database, and gives the user...
Hi, Put an message box inside the javascript and test the value of session("trackingIDS"). Probably this is not set correctly or there is some typo. The next...
What is in trackingIDS? Are you sure it has the correct info? Given that you don't have quotes enclosing the ASP substitution, I'm assuming that it holds a...
Hi all, I need a bit of a hand with a sproc I'm playing with with. This is the sproc: --start sproc================================== CREATE PROCEDURE...
Hi Moshe, The reason is that in your SP, you have not returned a recordset. So, rs(0) is invalid. You can return the recordset, by simply using a select...
Many thanks Mokles! Moshe ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Rahman, Moklesur Sent:...
Hi all I am a complete newbie when it comes to ASP, so pardon my complete ignorance. I have an extensive background in Access, SQL, HTML and VBScript, so I'm...
I'm not sure what your example looked like, but this seems to be all out of order. You are assigning the value of a field to the variable DayOfWeek at the top ...
Hi Tedd, At first glance it looks like you're not closing your <option> tag. This could confuse the browser and form data. Also, it appears that your option...
Oh, and move your code that opens the recordeset to the top! (How could I have missed that??!) Mark Wills, IAP http://www.markwills.co.uk ... From: mark wills...
Mark Thanks so much for your help. It's always the little things that will trip you up. After making the small adjustments you've recommended, my page is...
No problem, there are plenty of experts on ASP on this forum, the majority of whom know a lot more than me! Let us know if you get any more problems. Mark. ...
Okay, next puzzle... This is working beautifully when selecting the day of the week. I've now tried to extend this same logic to Employee Number, and it too is...
Okay, this is for anyone who is knowledgable on the networking side of things. Isn't IIS part of Windows Server, and if so wouldn't that mean that there are no...
Hi Tedd, It's been a while since I dealt with all this stuff, but here goes: Different versions of IIS are shipped with different versions of Windows. In...
Yes, IIS is a part of Windows. Yes, there are no additional licences needed, Yes, you could run IIS on an existing server. Depending how busy your server is...
It's probably data types that are different, I've seen this before, and I simply force them to be of the same data type! Try this (I have used the _ sign as a...
That fixed it! Thanks! ... and I simply force them to be of the same data type! ... neatly, please replace them with spaces - neat code formatting is important...
That is what I thought, but just wanted to confirm. I'm brand new to this creature called ASP. Thanks for the info! Tedd ... licences ... busy ... of ... ...
That does help, thanks Mark. And no worries... this will be used strictly in an Intranet environment. No exposure to the outside world. Thanks! Tedd ... ...
Hello list I have been asked to set up some ASP files on a new server and do some work on them. I have come across some code: <!--#include virtual="/afile.asp"...
I hate those virtual includes. They confuse the hell out of me. I have to say, in the 5 or 6 years I've been involved in web stuff, I've never needed to use...
Thanks Mark I can do that and it does work but this raises 2 problems: 1. I am maintaining a site - so I can't make major changes 2. How do you solve this...