• Hi,

    Wow. Now that is serious coding!

    But I'm not quite sure if it's not overkill. I have an identical requirement where I need to post back and save multiple checkbox selections from a web server.

    The way I have gotten around it is the following:

    1) Implement client-side JavaScript to build a comma-separated string of IDs to return

    2) Build the comma-separated string on the onclick event of the SUBMIT button and post to the action asp page.

    3) Retrieve the string and call a DLL (a stored procedure would also work)

    4) Parse the string and for each ID save to the database

    You mention that your approach is significantly quicker respect to iterating on the web server and saving each check-box value and I absolutely agree. But I would not expect the approach above to be significantly slower than the approach you propose.

    I'd be interested in hearing your views.