|
Add this line on top of your aspx page:
<%@ Register TagPrefix="obp" Namespace="OboutInc.Postback4" Assembly="obout_Postback4" %>
Insert this line anywhere on your page:
<obp:Postback4 runat="server" />
To reference the object, you need to useob_post.
|
Your page must be derived from OboutInc.oboutAJAXPage.
-
If you are using pages without code behind, add this line on top of your aspx page:
<%@ Page Language="C#" Inherits="OboutInc.oboutAJAXPage" %>
-
If you are using pages with code behind, derive your page like this:
PageName : OboutInc.oboutAJAXPage
wherePageNameis the name of your page.
To reference the object, you need to use ob_post.
|