Embed javascript in a vb DLL
Pretty much what I'm trying to do is: I have a function in my dll called write_results, when this function is called it walks a result set and displays out the results. While its walking this result set I check to see if there are any records that the user doesn't have access to. If there are it sets a variable. After the result set gets wrote out I check my variable to see if it has a value, if it does then I have a link display on the page. This all works fine.
Here is the issue. I would like the link to appear before my result set. So now the link is on the bottom of the page and I would like it on the top. So I wanted to include a div called ema_div. Now this has to be an ema_div.innerhtml so it has to be javascript. So is it possible to include javascript in a vb DLL and if so how. I know a dll is server side and javascript is client.

