I've been working on my own datatype, using Tim's guide at Nibble.de. I'm having some trouble getting data out to my site though.
What part of the code handles sending data to the front end to be displayed? I can't seem to figure it out. I've got my datatype interfacing with SQL but I can't get it to output to HTML. Is there a specific method that handles it?
Output Datatype Values to Site
I've been working on my own datatype, using Tim's guide at Nibble.de. I'm having some trouble getting data out to my site though.
What part of the code handles sending data to the front end to be displayed? I can't seem to figure it out. I've got my datatype interfacing with SQL but I can't get it to output to HTML. Is there a specific method that handles it?
-Thanks
-Jason
Comment author was deleted
Hi Jason,
Check out this part
void DataEditorControlOnSave(EventArgs e)
{
base.Data.Value = mcontrol.Text;
}
base.Data.Value is wat is going to be saved
is working on a reply...