To centre on the screen play with
<style>
.wrapper{
width:100%;
}
.checkboxes{
width:700px;
margin:0 auto;
}
.checkboxes label{
display:block;
width:100%;
text-align:center;
}
.checkboxes .chkdiv{
width:140px;
float:left;
margin-right:5px;
text-align:center;
}...
All doable, just have to play with the chkdiv width
<style>
.checkboxes label{
display:block;
width:100%;
text-align:center;
}
.checkboxes .chkdiv{
width:140px;
float:left;
margin-right:5px;
text-align:center;
}
</style>
<form class="checkboxes">
<div class="chkdiv">...
Hi
Not totally sure I understand, but from the point of view of javascript being able to see the asp - order is everything.
<%
dim dStartHols(100), dEndHols(100)
holsSql = "SELECT Start_Date, End_Date from lawn_holidays " &_
"Where UserID='" & Request.Cookies("userid") & "' " &_...
Hi all.
I need a function that will convert a string into html characters (for an HTA application)
For instance I need to be able to convert Russian into html encoded characters (Ӓ)
Any ideas?
Thanks
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
Hi all.
I am using xmlhttp to read some xml files.
I have 2 node lists (rss items)
Is it possible to merge these, without looping through the items and appending the child nodes?
Thanks
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
Hi all.
I want torun a macro to create a new id (first 3 letters of the surname + 001 etc any ideas on best way to do that welcome!!)
My big problem is how do i run the vba function when I save a record. I keep having to focus to the id field on the form which disrupts things!!
ANy ideas as I...
Give this a go
<%
function isSelected(strVar,strOpt)
dim strArr : strArr = split(strVar,",")
dim selected : selected=false
isSelected=""
if ubound(strArr) > 0 then
for n = 0 to ubound(strArr)
if lcase(trim(strArr(n))) = lcase(trim(strOpt)) then
selected = true
exit for
end...
Thanks, i had brackets that were wrong lol.
Need to get mysql 5 and just use a view me finks!!
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
Hi all.
I have a query that uses a union join to create a set of records.
Is there an easy way to create a new table based on this data?
Thanks
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
If you are on a load balanced server that does not have correct session managment this can happen.
Basically if you are on server cluster a and then you get switched to cluster b the session is lost!!
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
Think this is what you are after
<%if rsDate.eof then%>
No Records
<%else%>
<table border='0'>
<tr>
<%
for each fieldItem in rsData.fields
Response.Write vbTab & vbTab &"<td bgcolor=""#EBDDE2""><strong>" & fieldItem.name
Response.Write "</strong></td>" & vbCrLf
next...
Hi,
This is the bit I have, what I am trying to do is create a file in memory and download it using similar code to what you have posted. I need to get a string into a text stream somehow!!
Thanks though :D
}...the bane of my life!
http://www.yetanotherreviewsite.co.uk
http://www.fuzzyd.co.uk
Hey guys and gals
I would like force a download of a file that is created in memory.
I have a string that I was saving to a text file. You then download the textfile.
I would like to somehow miss the save step and just go straight to download, is this possible with binarywrite and streams or...
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.