Search Results

0
votes
4answers
1k views

ASP.Net - Help with datagrid/checkboxes/double submit

We have a simple datagrid. Each row has a checkbox. The checkbox is set to autopostback, and the code-behind has an event handler for the checkbox check-changed event. This all works as expected …
1
vote

What are your experiences with Windows Workflow Foundation?

I consider MS WF as a low-level workflow library rather than a fully fledged enterprise workflow product such as K2. It will enable you to build a workflow enabled application, but is not in itsel …
0
votes

ASP.Net - Help with datagrid/checkboxes/double submit

The reason the server side event is not firing is that disabled checkboxes do not get submited with the rest of the form. The workaround I have used is to set the onclick event of the check …