hi
i have a doubt about Databinder.Eval method

in my application im using the following:
webform1.aspx
-------------
<asp:hyperlink navigateurl=<%#fnxxxx(Databinder.Eval(Container.DataItem,"filedname"))%>..../>

code behind
------------

fnxxxx (byval param1 as string)
return "javascript:clientFn(" & & ")"
end sub

Client Script
--------------
function clientFn(par1)
{

. . .

}


im passing only one paramer here using DataBinder.Eval(......) method.

how can i pass the second parameter using the same method?