AppViewPageUrlField Property
Gets or sets the field in the data source from which to load appview page url values.
public System.string AppViewPageUrlField {get; set;}
'Declaration
Public Property AppViewPageUrlField As System.String
C1AppView c = new C1AppView();
c.DataSource = data;
c.DataTextField = "textField";
c.AppViewPageUrlField = "valueField";
c.DataBind();