I'm not sure if i am doing this right. I have installed the CWS and the membercontrols. I would like a textpage, with the register user macro on it.
Now, if i make the page, i have no macros available in the bodytext editor. Can i only insert Macro's in the templates, or do i need to allow it somehow?
You need to allow it; from within the developer section, expand the macros tree and click on the macro you want to use. You'll then be able to set it to be allowed in the editor and whether it's rendered within the editor or not.
Unfortunatly that ends up throwing an exception, when i add it to the richeditor :(
Invalid postback or callback argument. Event validation
is enabled using <pages enableEventValidation="true"/> in
configuration or <%@ Page EnableEventValidation="true" %> in a
page. For security purposes, this feature verifies that arguments to
postback or callback events originate from the server control that
originally rendered them. If the data is valid and expected, use the
ClientScriptManager.RegisterForEventValidation method in order to
register the postback or callback data for validation.
No macro's available in Richtext editor?
Hi,
I'm not sure if i am doing this right. I have installed the CWS and the membercontrols. I would like a textpage, with the register user macro on it.
Now, if i make the page, i have no macros available in the bodytext editor. Can i only insert Macro's in the templates, or do i need to allow it somehow?
Hi there
You need to allow it; from within the developer section, expand the macros tree and click on the macro you want to use. You'll then be able to set it to be allowed in the editor and whether it's rendered within the editor or not.
Dan
Unfortunatly that ends up throwing an exception, when i add it to the richeditor :(
Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
Hmm, this thread suggests using
In your web.config for that error. Is it currently set to true?
Dan
I have this:
<pages validateRequest="false" smartNavigation="false">
That is all. I will try to add enableEventValidation="false" when i get home today.
Well, it seems like that worked. Thanks Dan.
is working on a reply...