Hi all,
I'm trying to add an extra field (state) to newsletter subscribe webpart.
So I've added the extra column to dev > webpart > newsletter and to the system tables > newsletter-subscriber.
Now i can see the new added state field which is a dropdown box on the subscription list. I can modify them and save them. But the part that doesn't quite work yet is when i'm trying to save the value from the webpart. It seems that the subscriber object doesn't recognise the new field (state) that i've been added to the system table.
below is the piece of code that i'm working on
sb = new Subscriber();
//this sb object complain that it doesn't recognise SubscriberState (new field that
// i've added through systemtables)
sb.SubscriberState = txtState.Text;
I don't know if i'm missing something or it's actually a bug
Any help will be appreciated. THX