Tagged Questions

2
votes
4answers
403 views

C# 3.0 - Object initializer

I'm having a little problem and I don't see why, it's easy to go around it, but still I want to understand. I have the following class : public class AccountStatement : IAccountStatement { ...
0
votes
2answers
160 views

Adding a onclick event to a code generated html element via object initializer

I would like to be able to add a click event to a entity generated in the code behind. Currently I'm doing it like this: TableRow row = new TableRow(); row.Attributes.Add("onclick", ...