由于vb.net中的保护级别,div变量无法访问

时间:2015-05-20 05:58:04

标签: vb.net

我在vb.net中构建代码文件时遇到错误。未声明'#divvariable'。由于其保护级别,它可能无法访问。

代码段:

在ascx文件中:

<div ng-repeat="mylist1 in list1" ng-init="i=0;lst2 = list2[i++]">

在vb文件中:

-(void)viewDidLoad{

    UIBarButtonItem *anotherButton1 = [[UIBarButtonItem alloc] initWithTitle:@"Button_1" style:UIBarButtonItemStylePlain target:self action:@selector(button_1:)];

    UIBarButtonItem *anotherButton2 = [[UIBarButtonItem alloc] initWithTitle:@"Button_" style:UIBarButtonItemStylePlain target:self action:@selector(button_2:)];

    self.navigationItem.rightBarButtonItems=@[anotherButton1,anotherButton2];
}

1 个答案:

答案 0 :(得分:0)

正如蒂姆所说,你有2&#34;结束如果&#34;标签。但最重要的是,你宣布了#34; SampleFormWrapper&#34;?如果要使用它并使用GetElementById()从.ascx获取div,则需要先在.vb文件中声明它。

也许这可以帮到你