|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Active Server Pages (ASP) Programming Discussionmicrosoft.public.inetserver.asp.general
Re: revised microsoft.public.inetserver.asp.general charter
Stefan Berglund -
7 Jan 2006 7:09 PM - 1 message
On Sat, 7 Jan 2006 12:18:33 GMT, modera***@microsoft.public.inetserver.asp.general wrote: in <fd28f931.451f2***@microsoft.public.inetserver.asp.general> This contains a redirect to what is probably a virus --- Stefan Berglund ...
wrapping text around images using response.write
Coby Herd -
7 Jan 2006 12:15 PM - 4 messages
I cannot find any information on how to insert an image into a block of text and have the text wrap around the image. All if the text and graphics in the client's site are being pulled from the database using response.write. ...
Requesting lots of variables
Tom -
7 Jan 2006 12:10 AM - 13 messages
Hi everyone, I don't know if anyone can help me, I've got roughly 25 forms in a site, with between 10 and 70 fields on each form. Now, these fields need to be inserted into a DB, each form ...
ASP run command line
shank -
6 Jan 2006 4:20 PM - 10 messages
What is the proper syntax to run this command line in ASP? wzzip.exe File.zip File.txt thanks ...
using .net components with classic ASP web pages
Robert Miller -
6 Jan 2006 4:19 PM - 4 messages
I have a quick question. I have a asp.net program but my question is related to classis ASP programming. I am using a .Net component to generate pdf files. I have to create an asp.net program to create these ...
Setting object to Nothing
Ven -
6 Jan 2006 3:43 PM - 3 messages
If an Object is holding a valid reference to an Object, should I set it to Nothing before I set it to a another Object of the same type? ex: Dim objNode Set objNode=Node1 ' Say node1 is some expression ...
response end, set rs = nothing
Slim -
6 Jan 2006 9:55 AM - 3 messages
I must admit I always forget to use "response.end" and I also forget to "set objects = nothing" how important are these things. I know my application run fine without them probably because I usually have plenty of processing power and ram. ...
Graphs in ASP? ASP newb here
Jose M Hernandez -
6 Jan 2006 5:09 AM - 13 messages
Does anybody know of techniques (or websites) where a graph is generated based on data of an array? Any advice on graphs and ASP is greatly appreciated... ...
Request.ServerVariables("LOGON_USER") Reports web server login not client
Jeff Cochran -
6 Jan 2006 3:08 AM - 4 messages
First time I've seen this and I'm not even sure where to look for the answer. An ASP page with only this code: <% Response.Write "User: " & Request.ServerVariables("LOGON_USER") %> On most systems returns the domain\userID for the user on the ...
CMD.exe using ASP
Rodger -
5 Jan 2006 9:04 PM - 6 messages
I have a script that I want to run however I cannot get it to work. Every time I run the script I get . . . . . HERE IS THE CODE (ASP) set wshell = CreateObject("WScript.Shell") wshell.run ("j:\gwsend.exe /t=***@bethesdahealthcare.com /s=""" & Time() & ...
Problem with viewstate updating Dynamic Table contents
gaDev -
5 Jan 2006 8:23 PM - 2 messages
1) I build a Html Table dynamically (Header Row, and then 2 rows with data All 2 rows have 2 cells: cell(0) contains a delete button (ASP Button), cell(1) contains a HTML Text box 2) On Form Load and get some data from a dataset and then from it's contents ...
File check in ASP
Adrian -
5 Jan 2006 5:07 PM - 3 messages
hi I'm writing, or trying to! an ASP page that checks if a file exists and if so transfers it. the use sends a query string with the name of the file, I have this bit working, but need to check if the path and or file exists in ...
Problem with downloading ActiveX control in IE 6 SP1
fniles -
5 Jan 2006 4:21 PM - 6 messages
We created an ActiveX control and marked it as safe for scripting using Implements IObjectSafety. We then created a CAB file and signed it using Verisign. We also created a license file (LPK file) for it. We use this control on an ASP page. ...
RS EOF question
Mike -
5 Jan 2006 4:01 PM - 10 messages
I have some simple code see below. I have response written out the query and it is valid and returns values when ran directly against my db, which is Oracle. My OS is Win 2003. My question is I never get to the point of the loop. It always thinks I am ...
Dynamic ASP Local Variables...
@sh -
5 Jan 2006 2:02 PM - 4 messages
I'd like to create a series of variables created dynamically, example such as this... For i = 1 to 5 TheVariable & i = "blah" Next This would during the first loop create a variable called 'TheVariable1' with a value of 'blah'. Is this possible as so far I'm getting syntax ...
ORDER BY - "numerical string" problem
Giles -
5 Jan 2006 1:53 PM - 8 messages
An ASP page outputs data from the query "Select ThisAndThat from comments WHERE pageURL='" & pageURL & "' ORDER BY threadID, datesent" (Access mdb) threadID is a string (OK, I know!), which means that 103 displays before 99. Is there a way to write the SQL query to order them numerically? This would ...
ASP variable declaration bug or feature?!
Huy Hoang -
5 Jan 2006 12:45 PM - 2 messages
I tried to find something about this bug (or is it really a feature?), but couldn't find anything in this group. Here's the thing, I have the following code: <% option explicit x = "hello world" Response.Write(x) ...
Need Help With VBscript
AutoShutdown -
5 Jan 2006 10:28 AM - 4 messages
I am using VBscript in a asp file. lets say I have a value... abc="JDD-20015-19,12" def="JDD-20015-07,8" Question (1) How can I strip everything except the one after the comma(,) ? I mean, after I strip 'abc',all that is left is '12' and ...
Need help in Vbscript inside ASP file
AutoShutdown -
5 Jan 2006 8:03 AM - 2 messages
I use vbscript in an asp file. How can i take the last string in a variable. For example: abc="hello123" newabc=???(abc) and i only want the last string, that is "3". means, if I do... Response.Write newabc ...
Is there a way to restart your IIS Programmitcally??
firas489@gmail.com -
5 Jan 2006 4:09 AM - 9 messages
Sometimes i need to restart the IIS on a current server, but the problems is that if i want to, then i have to contact them by either email or phone, but sometimes it takes few hour to do it. So i wonder ...
Is it possible to debug remotely on w2000 workstation and how? Thanks for advice
AshotHN -
5 Jan 2006 2:11 AM - 1 message
See subject. ...
automated form data posting
Aragorn_USA -
5 Jan 2006 12:44 AM - 2 messages
welll I'm using ASP 2.0 =) I'm trying to do the automated form posting and submition. What I got is Excel file with the data that I need to manually enter to the form... What should I use to maximumally automate it =) ...
active control not download for IE6 sp1
Mark Chen -
4 Jan 2006 9:21 PM - 1 message
Hello : My problem is my active control will download to IE6 sp2, but not download to IE6 sp1. On IE6 sp1, ther is no popup to ask for download. Mark ...
an ASP automation question
Steven Scaife -
4 Jan 2006 10:31 AM - 9 messages
Hello I am creating a reporting system using SQL Server 2000 and ASP, I have created 4 pages that display the results i want, however the reports take an average of 20 mins to run and i have been asked to automate them, i decided ...
Cookie Over Write
Scott -
4 Jan 2006 2:35 AM - 14 messages
if i create a cookie named myCompany and store several values like userLast and userFirst and then later want to add a new name-pair such as userPreference1, can i append the new name-pair without re-writing the userLast and userFirst name-pairs? ...
Cannot figure out where is the problem with code to add row
Jack -
3 Jan 2006 9:27 PM - 4 messages
Hi, I have the following code which addes a publisher to the publishers table in the pubs database. However, for some reason, I am getting the following error: Error Type: Microsoft VBScript runtime (0x800A01B6) Object doesn't support this property or method: 'CreateParameters' ...
User Data Import Routine
Simon Harris -
3 Jan 2006 8:48 PM - 7 messages
Hi All, I need to write an ASP page that will allow users to upload an Excel file, the contents of which should then be imported into an SQL database. Problem I am facing is how to do this efficiently. So far I have a page ...
Beginner Problems
simchajoy2000@yahoo.com -
3 Jan 2006 5:43 PM - 15 messages
Hi, This question will probably be too simplistic for all of you, but I am trying to teach myself asp and I am having all sorts of problems. I have a simple html form which calls process.asp on submit: ...
creating files for functions and subs
Gonzosez -
3 Jan 2006 5:23 PM - 3 messages
I have created several functions and subs in both VB and Java. How can I put these into a file to be called by different pages. Thanks in advance, Gonzo ...
Another SQL issue with asp
Jeff -
3 Jan 2006 3:22 PM - 9 messages
hey guys. Thanks for all the help in the past. For some reason, ASP came fairly easy to me, but putting SQL in it.. well.. I lack. Anyway, here is what I have. set bam1 = conn.execute ("select distinct(username) as user, iscore, ...
New Windows
Paul W Smith -
3 Jan 2006 2:25 PM - 3 messages
I have an asp page which, upon selection from a dropdown, opens a new window (target="_blank") using the selected value as the parameter (page.asp?Test=(dropdown value)) What I want to do is control the look of the new page. I have been told I ...
Displaying Crystal Reports using ASP
lmalavika -
3 Jan 2006 6:10 AM - 2 messages
Hi All, I need to display crystal Reports using ASP. The webserver hosting this will not have Crystal Reports installed on it. We had done a similar requirement in ASP.Net by using the crystal viewers provided in .Net. Can something similar be done in ASP. Can we use the same objects in ...
transfer SQL data
shank -
2 Jan 2006 10:46 PM - 9 messages
I need to make a table's data available to users. The table is about 150,000 rows x 20 columns. So Excel is out of the question. I think the next common file types would be MDB or DBF. Using ASP, what are the steps to converting ...
Searching with IIS' indexing service?
Byron -
2 Jan 2006 10:26 PM - 2 messages
Hey, I'm fussing around with a first attempt at using IIS6's indexing service for a web site search page. The trouble is, my site, while not using a database, is largely dynamic, with much of the content filled in with ...
submitting form once results in multiple e-mails received...sometimes
Chris Baker -
2 Jan 2006 9:11 PM - 4 messages
This is a problem I have been troubleshooting for about 4-6 months. I have an e-mail form on a client's public website that is mis-behaving. It is written in ASP and uses a CDO.Message object. there is only one ...
ASP.Net 2.0
phamquocsy -
2 Jan 2006 2:27 PM - 1 message
to searching asp.net 2.0 (ajax.net)
--
phamquocsy
------------------------------------------------------------------------
Posted via [link]
------------------------------------------------------------------------ ...
Urgent Deliverable
kalikoi -
2 Jan 2006 4:34 AM - 3 messages
Hi All when i execute the following code i'm getting the error **************************************************************************** Content-type: text/html Software error: Malformed multipart POST ***************************************************************************** <% dim strDownloadedCode1 Class MultiPartFormPost Public Boundary Private NewData Private PreviousData Private ItemString Private blnLastItem dim http 'The next two functions build up a string of form elements and files to ...
replace function
Øyvind Isaksen -
1 Jan 2006 8:52 PM - 3 messages
Hi! I use this function to show the text with linefeeds on my webpages: ----------------------------------- replace(myText,Chr(13),"<br>") ---------------------------------- This works perfect if the variable "myText" just contains pure text. But, if the variable contains a html table with break after the <table> tag, ...
|
|||||||||||||||||||||||