guru's profileguru's spacePhotosBlogNetwork Tools Help

guru's space

guru

This person's network is empty (or maybe they're keeping it private).
December 07

6 free online editors for your asp.net site

6 free online editors for your asp.net site

FCKeditor this HTML text editor brings to the web much of the power of desktop editors like MS Word.

image

Download FCKeditor 

Demo

Damn Small Rich Text Editor - very small text editor.Built on top of well known JQuery library.

image

Download Damn Small Rich Text Editor

Demo

TinyMCE -Cross platform HTML WYSIWYG text editor .Supports templates, easy localizable and can be extended using plugins

image

Download TinyMCE

Demo

HotEditor - browser-based rich text editor that provides an advantage in simplifying the workload and providing options for integration to forum software

image

Download HotEditor

Demo

WYMeditor - simple cross platform XHTML  web editor

image

Download WYMeditor

Demo

SPAW Editor is a web based in-browser WYSIWYG editor control enabling web site developers to replace a standard textarea html control with full-featured, fully customizable, multilingual, skinable web based WYSIWYG editor.

image

Download SPAW Editor

Demo

Technorati Tags: ,,
Posted: Tuesday, April 08, 2008 11:29 PM by admin
Filed under: ,

November 23

One-Way (Fire-and-Forget) Webmethod

Using the OneWay property of SoapDocumentMethod under System.Web.Services.Protocols frees the client thread immediately instead of forcing it to wait for a response. The OneWay attribute can be specified like so:

[SoapDocumentMethod(OneWay=true)]
[WebMethod(Description="my method")]
public void MyMethod()
{
...
}

Method should be marked as void.

What is happening behind the scenes:

  1. The message is read and deserialized by the service.
  2. The webmethod name is evaluated.
  3. The server returns an HTTP 202 status code to the client (this should be visible in WSDL).
  4. The webmethod is processed.


 
There are no photo albums.