-
-
Just some small tips here to help boost the performance of the Host Server.
In the following config files in C:\Program Files\K2 blackpearl\Host Server\Bin
- DependancyService.config
- SourceCode.Categories.Runtime.config
- SourceCode.EventBus.ClientRecorder.dll.config
- SourceCode.Workflow.Runtime.Management.config
- SourceCode.Workspace.Runtime.config
Look for a ConnectionString key value. This stores the SQL connection string to the database. In the connection string, change the pooling value from False to True. It would also be a good idea to make a backup of the config files if you don't really know what you are doing. :)
Restart your Host Server to get the changes to take effect. And presto! you should see a faster Host Server. Note that this should be already fixed in the new 0803 build that should be released soon (plus a whole host of other fixes and performance enhancements).
For detail about this information you can click on this link http://www.k2underground.com/blogs/johnny/archive/2008/04/15/host-server-performance-tweaks-for-k2-blackpearl-sp1-and-earlier.aspx
-
-
How to create a RichTextBox on WSS 3.0 / Moss. Ho ho... is so easy you don't have to used other control or third party to implement this.
I will give you a example and code how to implement RichTextBox on the WSS 3.0.
<textarea name="txtTextArea1" rows="6" cols="20" id="txtTextArea1" title="Body123" class="ms-long" ></textarea>
<script language="javascript" type="text/javascript">
RTE_ConvertTextAreaToRichEdit("txtTextArea1", true, false, "", "1033", null, null, null, null, null,"FullHtml", "\u002f",null,null,null,null);
</script>
and then in your page you will get this:

Note : make sure that your page is included with this javascript :
<script type="text/javascript" language="javascript" src="/_layouts/1033/form.js"></script>