I am going to try patching a couple of cables together, and hook them up to an adaptor.
See if that works
Life is a journey that always ends up in the same place
Thanks porkchopexpress, that is what I meant!
Thanks again, I will look into it, and let you know.
Richard
Life is a journey that always ends up in the same place
What sort of cables do you use?, the switches themselves are just plugged with a 3 point ordinary plug!, but the UPS needs the standard PC plug type.
Life is a journey that always ends up in the same place
Hi, I am running a SBS 2003 server, and it is hooked up to a UPS, the trouble is, is that during powercuts, the network switches go down, (the supply the broadband conn.), so I am wondering if there is any way I could hook them up to the UPS to prevent this happening?
Thanks in advance
Life is...
Hi, Would this be the code to 'Check' the box if the value in the DB is Yes, and not check the box if the value is "" or isNull?
<Input type="checkbox" name="fieldname" <%If (rsCheckUser("fieldname"))="Yes" THEN response.write "Checked"%> value="Yes">
Life is a journey that always ends up in...
Hi, back again...slight issue, the orignal code, as posted above, was missing a couple of )'s, at the end of the first 'educationrecruitmentdifficulties', this has now caused it not to work, and all the check boxes come checked when the db is cleared. Any ideas?
[code]
<input type="checkbox"...
Well, isNull and "" are recognised differently by Access, (I dont know if same applies to MySQL/ Oracle etc), I will look into it though, i think when the table is just blank, and never been updated, it is fine, however, after the update, the update inserts a blank field as "", which then when...
Thanks to you both
Tek-tips shines through again.
DotNetGnat - would this be worth making an FAQ for?
Life is a journey that always ends up in the same place
Yeah, I was experimenting, I am going to have go with that.
I have the problem that an empty field in Access is actually "", rather than just blank.
So, to come over that I had to put
<%
If IsNull(rsCheckUser("educationrecruitmentdifficulties")) or...
It would have done if I hadnt of just copied and pasted the code twice. Sorry guys
<%
If IsNull(rsCheckUser("educationrecruitmentdifficulties")) Then
%>
<p>
<input type="checkbox" name="educationrecruitmentdifficulties" value="Yes">
</p>
<%
Else
%>
<%
If...
Hi, without going against the flow or anything, I did it like this,
<%
If IsNull(rsCheckUser("educationrecruitmentdifficulties")) Then
%>
<p>
<input type="checkbox" name="educationrecruitmentdifficulties" value="Yes">
</p>
<%
Else
%>
<%
If rsCheckUser("educationrecruitmentdifficulties") =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.