Posted on 23/08/2007 15:42:31
Hi
In C# when you have a parameter that has to be passed as ref, you need to first instantiate a variable, assign it the value and then pass it as parameter to the method using the ref keyword:
bool disableParagraphOptions = false;
HttpContext.Current.Response.Write(Dynamicweb.Gui.LinkManager("", "", ref disableParagraphOptions, false));
The second parameter is for some reason ref - an error we can not change as with the optional parameters because of all the Dynamicweb custom modules out there.