Hello Stefan,
I was wondering how I can get the default values to disappear from the form fields when clicked? If I just knew which file controlled the default text value for the fields I could most like use this logic in the asp Textbox for those items with a bit of js
onfocus="inputFocus(this)" onblur="inputBlur(this)"
</script>
<script type="text/javascript">
function inputFocus(i){
if(i.value==i.defaultValue){ i.value=""; i.style.color="#000"; }}
function inputBlur(i){
if(i.value==""){ i.value=i.defaultValue; i.style.color="#888"; }}
</script>
Am I even close?