Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.”
My friend, I just found that and it did the job. I'm not very conversant with ASP code and I ran into an issue that I finally worked out. I don't know if it is only related to the 3.4.0.7 code or if it is a greater issue. I think the latter.
The problem I encountered was related to the modification of pop_config_help.asp. (The allusions I make will only make sense when you look at the directions in the Header Cell Mod, by the way.)
The directions say to modify the code for the last lines of pop_config_help.asp as such
after
..... vbNewLine & _ " </tr>" & vbNewLine & _
place
..... vbNewLine & _ " </tr>" & vbNewLine & _
However, you won't find
..... vbNewLine & _ " </tr>" & vbNewLine & _
You will find (as the last line of code)
..... vbNewLine & _ " </tr>" & vbNewLine
You need to add the & _ to that line before you paste the code you are supposed to add. And instead of adding
..... vbNewLine & _ " </tr>" & vbNewLine & _
add
..... vbNewLine & _ " </tr>" & vbNewLine
Otherwise, the pop up won't work.
This will make sense when you look at the last lines of the directions for modifying pop_config_help.asp.
Great job by the author, TPMJ! You saved me a great deal of work!!