- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
CEO
22 Posted Topics
Re: If you want to HIDE proprietary code from the users, try developing the site in ASP or ASP.NET, but as MidiMagic stated, the HTML [B]MUST[/B] be visible for the browser to interpret. | |
Re: I'm not sure what would happen in your case, but you can try it here and see what it does [url]http://www.w3schools.com/xml/tryit.asp?filename=try_xmlhttprequest_js1[/url] I suggest leaving it as you originally have it, it's not doing any harm that way and it is sure to work with all browsers. | |
Re: Excellent topic cscgal! This has been something I've been struggling with for a while now. I'd LIKE to be a "Big Board Owner" at some point, but there are just too many obstacles that need to be overcome. When I started my boards up, I had a goal (or so … | |
Re: Googling terms such as "Free Web Templates" or "Web Templates" will turn up plenty of results to help you. If you want to narrow your search to a specific language, you could even Google "ASP Web Templates", "Flash Web Templates", or "PHP Web Templates" Good Luck! | |
Re: Correct, from the looks of it, that should be [B]response.redirect "login_script.asp"[/B] | |
Re: Lets see if I can remember this off the top of my head. If I'm wrong I hope someone will jump in and correct me. Generally when the time is sent from the browser to the server it is done with the [B]Now()[/B] function. In VB/ASP you can adjust the … | |
Re: It seems that a simple 'colspan=2' would do the trick. [CODE]<td colspan=2>Some Text</td>[/CODE] no? | |
Re: Your problem appears to be this line: [CODE] ' response.write sqlstr RST.Open sqlStr, strConnectProBurn, adOpenKeySet, adLockOptimistic [/CODE] What is the value of [B]strConnectProBurn[/B]? Since you say you changed hosts, that value would more than likely also need to be changed to reflect the new location of the database. The variable … | |
Re: The only thing I can see which looks like it would cause a problem is: [CODE].From = "Stuff Website"[/CODE] .From should contain an email address. Are you receiving any errors? | |
Re: ASP Pages are great in that you can actually view the error in your browser. It will give you the Error, the line the Error is on, and it will even show you the character position of the error. But, you have to turn a feature off so that you … | |
Re: The only issue that I see is that your Form is on a different page, so Request.Form won't work in your case. Try replacing Request.Form with [B]Request.Querystring[/B]. When the submit button on [B]myindex.html[/B] is clicked, it should send all of your name="value" pairs to [B]product_append.asp[/B] through querystrings. IOW, With no … | |
Re: Give this tool a lookover, it may be what you're looking for: ASPRunner: [url]http://www.xlinesoft.com/asprunner/[/url] | |
Re: It all depends on the datatypes you have set in the database table, but I see two issues in your statement. 1. INT types do not have ' around them 2. DATES are surrounded by # Try this: [CODE] select distinct(deptCD) from sessionD where custID = 2 and dt >= … | |
Re: karthik is correct, the easiest way (least secure method) would be to use request.querystring to pass the variables between pages. Passing querystrings is simple. Each <input> is given a [I]name[/I] and the value of the <input> is the value shown in the querystring. That name/value pair is what you see … | |
Re: anto_nee, I just replied to a similar post. In short, replace Request.Form with [B]Request.Querystring[/B] Please check this thread for details: [URL="http://www.daniweb.com/forums/post478528.html#post478528"]http://www.daniweb.com/forums/post478528.html#post478528[/URL] If you're still having issues, reply here and I'll get the email. | |
Re: Although the suggestions above will work fine, there may be an easier way to accomplish that without all the complex coding. All subfolders automatically resolve to "index.html" or "default.html" (depending on your server settings). If you don't already have one, create a file (with the appropriate name as listed above) … | |
Re: No need to post the code here yet. From the looks of the error, there is a Mid function call on line 24 of page [B]notify_shipped asp[/B]. Go to that page and that line and make sure that you're calling the function properly. Remember, this is a [B]function[/B] not a … | |
Re: I suppose that all depends on if you want to keep records of the first SubContractor that was associated with the job. If you don't care about keeping that information, then you won't need a middle table, and all you would need to do is add [SubContractor.ID] (as a lookup) … | |
Re: Not to say that my coding is correct or incorrect, but in looking through my Webmaster tools/stats, it appears that the GoogleBot finds issues with them and has created errors. | |
Ad Placement and Management This is one area which my site is very weak on. I know very little about how it works or how to implement it. I've spent countless hours looking through all the Ad Management Sites and nothing seems to be worth investing in. What I want … |
The End.