|
-
Jul 15th, 2005, 05:32 AM
#1
Thread Starter
Lively Member
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?
-
Jul 15th, 2005, 06:38 AM
#2
Re: passing paramete using Databinder.Eval in Datagrid
What is the second param you want to pass?
-
Jul 18th, 2005, 11:52 PM
#3
Thread Starter
Lively Member
Re: passing paramete using Databinder.Eval in Datagrid
 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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|