tags:

views:

21

answers:

3

i have a form with some checkboxes on it i want to save those settings.

how can i save the settings

+1  A: 

You can use the SaveSetting function for that, to retrieve you can use GetSetting function. See this fore more info.

Sarfraz
A: 

Put all of your settings into a class, then serialize the class to an xml file using the XmlSerializer.

smoore
+1  A: 

And if you loathe the REGISTRY, you can have a CONFIG file (essentially XML) with KEY / VALUE pairs.

The REGISTRY can be cumbersome on so many levels including remembering to REMOVE any settings you may have saved when you UNINSTALL.

tobrien