passing paramete using Databinder.Eval in Datagrid
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?
Re: passing paramete using Databinder.Eval in Datagrid
What is the second param you want to pass?
Re: passing paramete using Databinder.Eval in Datagrid
Quote:
Originally Posted by mendhak
What is the second param you want to pass?
i want to pass the second parameter as byval yyyy as string using
<%#fnxxx(Databinder.Eval(Container.DataItem(""),Databinder.Eval(Container.DataItem(""))%>
but this is not working