コード例 #1
0
 /// <summary>
 /// Appends a partial view, using the specified view name and model, to the
 /// elements matching a jQuery selector.
 /// </summary>
 public IAppendCommandToTargetSyntax AppendPartialView(string viewName, object model)
 {
     var commandBuilder = new AppendCommandBuilder(this);
       commandBuilder.SetPartialView(viewName, model);
       return commandBuilder;
 }