A
AAaron123
Someone spent much time helping me with this and I thought I understood but
now find I'm not sure abut some things.
I'd appreciate it if you would comment on all or some of the following.
MUST DO IT THIS WAY
<asp:CheckBox Checked='<%# Bind("IsPublic") %>'...
OR COULD DO THIS
<asp:CheckBox Checked="<%# Bind('IsPublic') %>"...
WHICH IS BETTER?
THESE ARE OK??
<input type="button" onclick="window.location.href = 'UserInfo.aspx'"...
<input type="button" onclick="window.location='<%=FromWhoPhoto%>';" ...
RUNAT SERVER NOT REQUIRED BECAUSE OF <%= ?
RUNAT SERVER SEEMS TO BE IMPLIED (these works ok)
SAME FOR <%# ?
THIS IS OK (seems to work)
onclick="window.location.href='<%# "Events_edit.aspx?Action=Delete&id=" &
truncate(Eval("id")) %>'" />
BUT THIS IS NOT OK
text="some-text-here '<%#truncate(Eval("id")) %>'" />
now find I'm not sure abut some things.
I'd appreciate it if you would comment on all or some of the following.
MUST DO IT THIS WAY
<asp:CheckBox Checked='<%# Bind("IsPublic") %>'...
OR COULD DO THIS
<asp:CheckBox Checked="<%# Bind('IsPublic') %>"...
WHICH IS BETTER?
THESE ARE OK??
<input type="button" onclick="window.location.href = 'UserInfo.aspx'"...
<input type="button" onclick="window.location='<%=FromWhoPhoto%>';" ...
RUNAT SERVER NOT REQUIRED BECAUSE OF <%= ?
RUNAT SERVER SEEMS TO BE IMPLIED (these works ok)
SAME FOR <%# ?
THIS IS OK (seems to work)
onclick="window.location.href='<%# "Events_edit.aspx?Action=Delete&id=" &
truncate(Eval("id")) %>'" />
BUT THIS IS NOT OK
text="some-text-here '<%#truncate(Eval("id")) %>'" />