Intersoft WebCombo Documentation
How-to: Navigate to specific page after adding a row
See Also Send comments on this topic.
Intersoft WebCombo > WebCombo Advanced Features > ClientAction Engine How-to Topics > How-to: Navigate to specific page after adding a row

Glossary Item Box

WebCombo provides a method to navigate to specific page after adding a row.

In this topic, you will learn how to use NavigateTo method. 

To navigate to specific page after adding a row

  1. Create WebCombo's AddItem server side event.
  2. Put the following code in AddItem server side event after adding a row:
    C# Copy ImageCopy Code
    WebCombo1.GetClientAction().NavigateTo("Default.aspx");           

  3. Run the project.

See Also