Updating an existing poll

  Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic! Mail us feedback on this topic!  

The following sample code shows how you can modify poll properties using the API:

 

[C#]

 

using CMS.Polls;

using CMS.SettingsProvider;

using CMS.DataEngine;

using CMS.GlobalHelper;

 

...

 

      string pollName = "testingpoll"; // Testing poll code name

 

      // Get poll info by code name

      PollInfo pollObj = PollInfoProvider.GetPollInfo(pollName);

 

      if (pollObj != null)

       {

          // Set the field values

           pollObj.PollResponseMessage = "Thank you for your time.";

           pollObj.PollAllowMultipleAnswers = true;

 

          // Save the changes

          PollInfoProvider.SetPollInfo(pollObj);

       }

 

Page url: http://devnet.kentico.com/docs/devguide/index.html?updating_an_existing_poll.htm