Hello, AspClassicAnyQuestionIsOk@yahoogroups.com! PogoWolf wants you to check out Raptr, the best place for people who like to play and discover games. ...
hi, I am running a script by which a file will be created from database(MsSQL 2000/2005) and will be available for download. but problem is it is putting load...
Did you consider not using the filesystem and instead return the "file" as a response stream? You can set the mime type and Response.Write the byte array read...
hi all, Agreed that restarting IIS will solve my problem. I am simplifying my question, Now i am displaying a page. That page will fetch records from DB and...
Hi everyone, I'm trying to code a simple ASP page to request an XML page from a remote server and save it to an XML file on my server. What code do I use to do...
What might help is using this component: http://www.alphasierrapapa.com/IisDev/Components/AspTear/ When you have the information as a string just save it as a...
Hi: This is related to programming, I am just newbie on this area, and I want to apply hash on my PDF filenaming, I create a function prototype something like...
If 'salt' is nothing it can throw that error ... so, maybe add an error handling wrapper If Not (salt Is Nothing) And (salt.Length > 0) Then 'normal processing...
Need help: I've got to 1) create an ASP.NET/C# webservice that will receive a SQL string, execute it, and return an ADO (NOT ADO.NET, NOT DATASET) Recordset...
Hi All, I'm required to develop Content Management System(CMS) for one of my latest web site. Actually, I've never done this before and completely new to this...
Since you're considering adding a field, instead of an incremented field can I suggest you add a datetime field? Then in your UPDATE statement, update the...
Hello Tom, Thanks for the reply. I didn't get why you want me to add a Datetime field? I think you must have got my question wrong. Let me try to explain you...
OK, sorry, thought you meant in the order the admin created them for some reason. Anyway, it seems better to create a new relational table with the primary key...
Just add a new field to your table and call is priority or sort_order. Add a small text box to the page where the admin enters records and have them supply...
Anyone have practical examples of how to return and process an ADODB Recordset from .Net (C# in particular) in Classic ASP? Working examples would be...
I truly need help on this tonight. How do I link this so that it can appear as a .doc or .pdf file? <%=rs.Fields("file")%> </td> Thanks, Tammy ...
You can do this if all you want to do is use your recordset field as a link to the doc: <a href="<%=rs.Fields( "file")%>" target="_blank"><%=rs.Fields(...
I have Disable Script Debugging (Internet Explorer and Other) unchecked, but the script errors are not appearing. I just keep getting the "The website cannot...
Hi All, I'm creating a survey form whose data needs to be store in database. I'm using ASP and MYSQL for this. My form page is working fine, I mean Javascript....
I am trying to run a stored procedure on SQL Server. Here is the procedure: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[vb_get_name] ...
Only thing I see is I think you need to define the param as input-output, not just output. Most queries don't need the output param to get results like this,...
Please help! At this point I'm banging my head against the wall!! The web address to the contact form is http://www.thevilla-austin.com/contactus.html The...
You just need to htmlencode the lines to display code: response.write HTMLEncode(thisline) & "<br>" I've noticed having to use replace() for some things to...
Add in some tracing code, write those to the screen, this will let you know if the email got to the server OK or not, the message object has .TimeSent which...
Dear All, I have a table 'branch' with two fields: 1. branch_code 2. branch_name I have a page where I have a combo box with all branch codes. I want to show...
I'm going to assume this is a dropdownlist since there is no native combobox for the web ;) Is the user making the selection, or are you pulling it from...