all groups > inetserver asp general > november 2003 > threads for monday november 3
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Multiple Redirect
Posted by Jörg at 11/3/2003 5:53:30 PM
Hi ng,
I have to do a multiple redirect.
That means one ASP-script should do more than one HTTP-request.
e.g.
response.redirect(url1)
response.redirect(url2)
...
I know, that it won't work like that...
Does anyone now a solution or workaround
Thanks
JD... more >>
CDONTS not working!
Posted by Bruce W...1 at 11/3/2003 3:20:49 PM
From what I can tell I have IIS setup right to relay email thru my ISP's
SMTP server.
I made a couple of ASP web pages to send the email, copied verbatim from
here:
http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q186/2/04.ASP&NoWebContent=1
... more >>
notify asp of database update
Posted by Jaco Bregman at 11/3/2003 2:18:36 PM
Hi all,
I am using a DataAdapter and a DataSet to populate my website with data from
SQL Server. I would like to update my page when data is added to the
database, but untill now I didn't get much further than using a 'select'
statement at regular intervals. Any ideas?
Thanks,
Jaco
... more >>
Array Problem
Posted by David P. Jessup at 11/3/2003 2:07:56 PM
CODE:
LinkCount=0
ClmCount=0
for each ofield in rs.fields
response.write ofield.name & "<br>"
if ofield.name = strLinkedColumn(LinkCount) Then
redim preserve eClmCount(LinkCount)
eClmCount(Linkcount) = ClmCount
LinkCount=LinkCount+1
end if
ClmCount=ClmCount+1
next
eClmCount k... more >>
& vs. <%=
Posted by Dave Holmes at 11/3/2003 11:30:26 AM
I am working with some third-party ASP code.
Rather than:
<%
if x then
response.write "<b>" & var1 & "," & var2 & "," & var3 & "</b>"
end if
%>
it is more likely to contain:
<%
if x then
%>
<b><%=var1>,<%=var2>,<%=var3>,</b>
<%
end if
%>
I know that concatenation is expen... more >>
Can't run asp pages anymore
Posted by Steven K at 11/3/2003 11:09:21 AM
Hello,
Due to onslaught of virus attacks, we were instructed to add or change
passwords for all machine users (i.e. Control Panel then Users and
Passwords). When I did that, I was no longer able to see my asp pages
(which are pulling data from Sql Server 2K) but I can show html pages. I am
... more >>
Upload file using ASP pages
Posted by MeAndI at 11/3/2003 11:01:27 AM
Hi to all,
How can I put a file via FTP using the ASP pages?
Please help
... more >>
Session
Posted by vvv at 11/3/2003 9:49:02 AM
How can I change a session("x") with hyperlinks?
thanks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Classes and recordsets
Posted by boardrider_uk NO[at]SPAM hotmail.com at 11/3/2003 8:52:31 AM
Hi,
Assuming I create an object as below
<%
Dim objMainItem
Set objMainItem = New ItemContent
objMainItem.item_id = 1
objMainItem.Open()
%
and the class ItemContent creates a recordset based on the item_id
passed in.
Each item record contains the fields (header,label,content). I woul... more >>
Request.ServerVariables coming up empty?
Posted by ljb at 11/3/2003 8:40:16 AM
A few days ago all my Request.ServerVariables began coming up empty. I was
using Request.ServerVariables("AUTH_USER") for basic authentication but now
its useless. Our server administrator tells me he installed some "patches"
last week but doesn't think he caused the problem. All I can say is tha... more >>
What software?
Posted by Harag at 11/3/2003 8:11:57 AM
Hi all
I was just wondering what software other people use to create classic
ASP pages.
I know of the following:
Visual InterDev
Dreamweaver
Textpad
Notepad
I was wondering if there is anything thats better than text/notepad
but doesn't have all the bells & whistles of the other 2.
... more >>
Type Mismatch using Format()
Posted by klynntg NO[at]SPAM hotmail.com at 11/3/2003 7:58:02 AM
OK, newbie here - I am trying to figure how how in the heck I can use
the Format command to pre-format integers to display a fixed length
supplimenting leading zeros when needed.
According to the RTFM rigors I have been going through all morning, I
just give Format an expression with the first... more >>
Asp first page load (validation) help!!!!
Posted by aotemp NO[at]SPAM hotmail.com at 11/3/2003 4:52:32 AM
Im working with an ASP page, with vbscript.
I am doing a bit of data validation on the following page and sending
the users back to the previous page if the required fields are not
filled in. This works great, only the warning that the required
fields were not filled in is now showing up on t... more >>
How to get all pages execution time
Posted by panyb NO[at]SPAM hotmail.com at 11/3/2003 1:21:50 AM
Hi all,
Basicly, when the page is in bad performance, the user will feedback
to me, and later I tune it for better performance.
Is there any way or software to trace all the ASP pages' execution
time in my site, so that I can tune it before user's feedback and have
an overview of all my pag... more >>
Type mismatch: '[string: ""]'
Posted by Mark Sargent at 11/3/2003 1:04:10 AM
Hi All,
why am I getting this error..? Cheers.
Mark Sargent.
Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch: '[string: ""]'
/Classifieds/ClassifiedImageResize.asp, line 27
<%
' Create instance of AspJpeg
Set Jpeg = Server.CreateObject("Persits.Jpeg")
' C... more >>
|