<
script type
=
"
text/javascript
"
>
function show(taskid)
{
window.open (
'
AddTask.aspx?id=
'
+
taskid,
'
newwindow
'
,
'
height=300, width=400,top=200, left=200 ,toolbar=no, menubar=no, scrollbars=no
'
)
}
</
script
>
<
ItemTemplate
>
<
a href
=
"
#
"
onclick
=
'
show( <%#DataBinder.Eval(Container.DataItem, "TaskID ") %> );
'
>
<
asp:label id
=
"
labelSumary
"
runat
=
"
server
"
Text
=
'
<% #Bind( "TaskSummary ")%>
'
>
</
asp:label
>
</
a
>
</
ItemTemplate
>