all groups > inetserver asp general > january 2004 > threads for friday january 9
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 31
HTML Textarea
Posted by Mike Labman at 1/9/2004 11:59:36 PM
This is more of an HTML/CSS question, but I figure someone in here might
know.
I'm using in the stylesheet:
BORDER-RIGHT: none;
BORDER-TOP: none;
BORDER-LEFT: none;
BORDER-BOTTOM: none;
OVERFLOW: hidden;
to hide the borders and scrollbar, which works in windows browsers, but
in MAC safa... more >>
Is this a good article on making pages Expire?
Posted by michaaal at 1/9/2004 10:57:05 PM
Is this an accurate article on making web pages expire?
http://www.developerfusion.com/show/1010/14/
... more >>
How to acess mdb from a remote machine in ASP
Posted by Rajesh R. at 1/9/2004 6:48:30 PM
Hi,
I have developed an application in asp with backend as ms-access database.
The mdb file is on a one machine and my IIS is running on a different
machine. The code which I tried is as follows
<%
set con = server.CreateObject("adodb.connection")
I tried both ... more >>
Type 'PriceCheck' is not defined
Posted by mo at 1/9/2004 4:24:45 PM
I'm having trouble deciphering the following error messgae. How and where
exactly do I define 'PriceCheck'?
Error:
Compiler Error Message: BC30002: Type 'PriceCheck' is not defined.
Source Error:
Line 29: <asp:TemplateColumn HeaderText="In Stock">
Line 30: <ItemTemplate>... more >>
80020009 -- ready for a tough one?
Posted by middletree at 1/9/2004 4:05:41 PM
On my dev machine, on which I test, I have essentially the client, db, and
web server on machine. I started getting an error today that I just don't
get.
===========
Error Type:
(0x80020009)
Exception occurred.
/DisplaySortableTickets.asp, line 982
Page:
GET /DisplaySortableTickets.asp
=... more >>
calling recordset values inside html link
Posted by crispy at 1/9/2004 3:53:42 PM
Hello group,
I'm again having trouble putting ASP records INSIDE html link.
Here's the string I put inside Access field:
No room number specified (<a
href='contact.asp?subject=corrections/addition for AASG.info group ID
<%=(Recordset1.Fields.Item('group_id').Value)%>'>update</a>)
but ... more >>
multiform asp file download
Posted by Al at 1/9/2004 3:12:40 PM
Hello,
I am using enctype of multipart/form-data to transfer
files. However, in the target page (action), I can only
retrieve the file. ie. If I call Request.BinaryRead, then
Request doesnt process Form or QueryString anymore. If I
access Form/ QueryString, BinaryRead doesnt work anymore.
... more >>
2-dimentional array in session variable
Posted by Cedric Baelemans at 1/9/2004 1:05:40 PM
Hi,
I try to store a two-dimentional array in a session variable. When I do the
same with a one-dimentional array, it works fine, but with a two-dimentional
array it fails. Is this not possible? Is there something special I have to
take into account?
Any help is welcome
Cedric
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
ASP w/ XML
Posted by dfd at 1/9/2004 11:24:47 AM
How can when select change run a event
Posted by Jack at 1/9/2004 10:59:33 AM
Hello,
<%@ Language=VBScript %>
<%
Response.Write "<SELECT id=select1 name=select1 method=GET>"
Response.Write "<OPTION 1>One</OPTION>"
Response.Write "<OPTION 2>Two</OPTION>"
Response.Write "<OPTION 3>Three</OPTION>"
Response.Write "</SELECT>"
Response.Write "<INPUT type=""text"" id=t... more >>
test
Posted by wq at 1/9/2004 10:53:15 AM
select ID in drop down list and show name in text box without clicking submit button
Posted by Matthew Louden at 1/9/2004 10:25:02 AM
if the user select the EmployeeID in drop down list, and then click the
submit button, and it will look up database and show the Employee Name in
the text box, this is easy.
But my case is: when the user select the employeeid in drop down list, it
will
fire the onchange event, and then look ... more >>
asp error 0126
Posted by Mason Myers at 1/9/2004 9:39:39 AM
Here is the code:(current path is /application and _fpclass is a
subdirectory) <form method="POST" action="--WEBBOT-SELF--"
onsubmit="return FrontPage_Form1_Validator(this)"
name="FrontPage_Form1">
<!--webbot bot="SaveDatabase" startspan suggestedext="asp"
u-asp-in... more >>
ASP vs. CGI?
Posted by Laser Lu at 1/9/2004 8:54:53 AM
In ASP and CGI, which one would be executed more fast and has the better
execution efficiency in IIS?
And how about writing CGI in VB?
--
Best regards,
Laser Lu
... more >>
how about the performance by using SSI?
Posted by Laser Lu at 1/9/2004 8:53:06 AM
Whether it can improve the execution effciency of ASP by centeralizing the
often used code into header files and then including these header files in
ASP pages?
--
Best regards,
Laser Lu
... more >>
Dividing variables and rounding
Posted by n4th4n NO[at]SPAM hushmail.com at 1/9/2004 5:48:59 AM
Hey folks, I'm doing up a stats page for a survey, and this is a small
part of one of the results. Below is part of the code to do
totals/percents. My question is, how do i make it so myAnswer is
written with two decimal places?
Currently, it displays the percent as 4.76190476190476
<%
myA... more >>
ASP capabilities not available
Posted by verb13 NO[at]SPAM hotmail.com at 1/9/2004 4:15:44 AM
I run Win2k and IIS 5.0. Some capabilities (new to ASP 3?) like
Server.Execute, Server.Transfer, ASPError Object and ObjectContext
Object are not available. Why is that?... more >>
asp with javascript
Posted by josema at 1/9/2004 3:52:01 AM
Hi to all
I have a asp page that have an array for instance:
<%
a(0)=0
a(1)=1
a(2)=2
a(3)=3
%>
I would like to show each element of the array with
alerts in javascript... Do you know what its the way to
make something like this...
Thanks in advance and happy new year.
josema
... more >>
Microsoft VBScript runtime (0x800A01A8)
Posted by Matt at 1/9/2004 12:59:44 AM
The ASP page has a combo box with id list, and when user click the
particular id, it will show the name in the text box. My attempt was when
the user have event on combo box, it will call JavaScript showempname(), and
it will then look up the name by executing SQL statement.
However, the follo... more >>
|