Search:
Type: Posts; User: Ubik
Search :
Search took 0.03 seconds.
Can you share with the group?
http://www.irt.org/script/314.htm
Try:
<% If not followUp.EOF And not followUp.BOF Then %>
<td><a href="addfollowup.asp">Add a follow up</a></td>
<% End If %>
You can try
if len(request.form("fieldname")) <> 0 then
response.write "<p>Something was entered!</p>"
else
response.write "<p>Please go back and put something in fieldname.</p>"
end if
Put a file called 'default.asp' into the images folder.
In the default.asp file, place this code:
<%@LANGUAGE="VBSCRIPT"%>
response.redirect ("http://www.abc.com")
Can you paste in the code that defines what 'followUp.Fields.Item("visitID")' is? It sounds like a recordset or some kind of object array.
It might be a permissions issue. You will need to give your source code 'permission' to write or modify items in your database.
This is just a guess.
Well, the very nature of cascading style sheets is that they cascade. With that in mind, what I usually do when I need dynamic styles is I place all of the static styles into the main stylesheet,...
"Can I put the above case function in one include file, put that include file on every page..."
Yes.
However, it seems like you might be thinking that Include files are your solution, when they...
I would also change all my passwords right away too.
Resolved.
http://www.blogstickr.com/
Just playing around. Trying to figure out how serious is the notion "CSS is not for pixel perfect design".
Thanks, that makes sense.
I am happy with the new one. And I have stripped out a lot of garbage.
I have a machine running windows server 2003, and it stays on all the time. On that machine, I have setup a scheduled task (programs --> control panel --> admin --> scheduled tasks), and that task...
SQL:
Select subcategory.name from maincategory, subcategory where subcategory.maincategorypkey=maincategory.pkey and maincategory.name='kitchen'
I have this crazy idea that I can make little blog stickers using css.
http://www.griffinoutpost.com/thelab/css/blogstickercss.html
It works pretty good in ie, but in FF, there is a three-px...
that doesn't really help, but thanks anyway.
check for BOF or EOF prior to manipulating the recordset:
if not rs.BOF and not rs.EOF then
'manipulate recordset
else
response.write "<p>Bummer, dude, no records found.</p>"
end if
Why not use php/mysql? In a lot of ways, it is more robust than asp/IIS
There are numerous ways to accomplish some part of this. Nothing is going to be fool-proof, in fact, it is impossible to gain 100% accuracy.
If you are sending this as a html message, you can...
Yeah, anything else out there?
dim aMyRecordSet, boolSuccess
aMyRecordSet = aGetRecords ("SELECT * from TABLE;")
boolSuccess = Dump2dArray(aMyRecordSet)
function Dump2dArray(aMyRecordSet)
dim intTotalRowCount,...
This discussion is for people who haven't grasped that ASP is server side and JavaScript is Client Side.
Then, it also gets complicated because JavaScript can be run server-side under ASP.
And,...
You will need:
<%@ language="vbscript" %>
at the top of each page.