all groups > inetserver asp general > june 2005 > threads for june 29 - 30, 2005
Filter by week: 1 2 3 4 5
checking for nothing entered in an asp form post
Posted by wk6pack at 6/30/2005 4:00:38 PM
Hi,
How do you check for a empty value from a form?
lservice = request.form("pservice")
if not isnull(lservice) then <== this doesnt work.
tried "" empty string and it still didnt work.
......
I'm having problems with the fact the user didnt enter anything. The field
is optional.
... more >>
Detect image size automatically in asp?
Posted by Guojun Zhu at 6/30/2005 12:54:18 PM
I am writing a little script for an online album. The pictures' size varies
a lot. I have a maxim size for every displayed picture because the layout
of the page. So I want to resize the larger one to that size while leave
the smaller one in their original size. Is there any script or code th... more >>
Word.Application Dictionary?
Posted by James at 6/30/2005 12:53:52 PM
I'm using Server.CreateObject(Word.Application) to execute a spell check.
Works fine, but we'd like to add a few of our more common company-isms to
the dictionary, as they're getting flagged every time. I tried opening Word
on the Server and adding one to the dictionary. I also tried it locally... more >>
JScript runtime error '800a138f' 'undefined' is null or not an obj
Posted by NO[at]SPAM at 6/30/2005 12:25:03 PM
I am running some off-the-shelf software that is written in ASP, which uses
JScript to generate dynamic content within HTML forms. There are several ASP
pages which are partially rendering to IE, but stop midway through with an
error embeded in the page: "Microsoft JScript runtime error '800a... more >>
using meta tag and values posting page
Posted by wk6pack at 6/30/2005 11:33:24 AM
Hi,
I'm trying to redirect the page while trying to pass some values to the next
asp page. I'm not getting any values when I do this. Is this possible?
I'm using the code below to redirect
<META HTTP-EQUIV="Refresh" CONTENT="5; URL=supportservicelist.asp">
but when I look at the value... more >>
Losing Session?
Posted by James at 6/30/2005 11:00:26 AM
Session("UserName") is set when someone logs in. Get to a page that
displays a record where you can type a comment. The form has an onSubmit
event that calls a javascript function. That function sets a javascript
variable called beenChecked = true and then calls a PopUp window to spell
check ... more >>
Capture text messaging
Posted by JasonH at 6/30/2005 10:38:09 AM
Hi all,
I have a client that wants to allow users to signup for a contest using text
messaging. I have no idea where to start with this, so hoping someone here
has some experience with this.
Any info / suggestions / starting points would be very much appreciated.
... more >>
How to address one item in a collection object
Posted by Guojun Zhu at 6/30/2005 9:54:08 AM
I am using VBscript in ASP. I am trying to address one file in a folder
object. Below is the relevant code
Set MyDirectory=Server.CreateObject("Scripting.FileSystemObject")
' MyFolders is contents of folder containing photos.asp
Set MyFolders=MyDirectory.GetFolder(Server.MapPath("./"))
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Determine Header Size
Posted by Tom B at 6/30/2005 12:00:00 AM
hello all,
Our central site has set up a VPN for us so we can access our network from
home.
Unfortunately, our Intranet won't come up.
We've been told it is because the Intrusion Prevention System on the
firewall is blocking it because the headers are too large.
How can I determine h... more >>
CDO.message and UTF8
Posted by Chaotical Impulse at 6/30/2005 12:00:00 AM
Help!
Trying to send mail with ASp and CDO, but my local (croatian) characters are
completely left out from the message! It's not like some strange chars are
shown, but nothing. like they are ignored.
The ASP page has <%@language="vbscript" codepage="65001"%>.
What parameters of the CDO... more >>
Redirecting users to different site
Posted by Dave at 6/29/2005 9:36:28 PM
I am moving a web to a new address. The old address will be shut down in
several weeks.
Is there a way to automatically redirect users who come to the old site in
these last few weeks to the appropriate page on the new site?
... more >>
error '80040e07' wrong syntax in Date expression
Posted by Aloof at 6/29/2005 7:00:47 PM
Using Access 2000
Windows Server 2003
The following code worked fine until we moved hosting companies
StartDate = Request.Form("StartDateMonth") & "/" & Request.Form
("StartDateDay") & "/" & Request.Form("StartDateYear")
EndDate = Request.Form("EndDateMonth") & "/" & Request.Form
("EndDate... more >>
Code Doesn't Listen...Avoids Sub & Inserts Data Twice???
Posted by SABmore at 6/29/2005 11:29:10 AM
I have the following code that populates 3 independent drop-down boxes with
data from arrays. From there the user can select a value from a drop-down
list, or input data into a text box. The user then submits this to be
inserted into the database. Currently I've only programmed to have the ... more >>
how handle QueryString object
Posted by Ing. Branislav Gerzo at 6/29/2005 8:58:48 AM
Hello all,
user have in browser address bar this URL:
http://localhost/store/CDfilter.asp?catid=3&lngid=3&osid=7&ordertype=desc&orderby=release_date&PerPage=50&PageNum=2
I have on page filter form, and also users should change the order. In
this case it is ordered by release_date desc, but h... more >>
|