我有一个位于目录中的WebForms-Site(例如/View/site.aspx)。
在这个网站上我创建了一个带有onClick-Event的asp:Button。我们的想法是,如果单击此按钮,则应保存事先写入TextBoxes的数据。
问题是,如果单击此按钮,它只会重新显示到不存在的站点(/site.aspx - 忽略目录/视图)。
我只是从工具栏中删除了按钮,因此代码中应该没有错误。 Button1_Click是通过双击设计窗口中的按钮生成的,不会被调用。
could maybe use CSS media queries to change sizes depending on viewport,
@media only screen and (max-width: 768px) {
.your_class_here {
/* css style goes here; */
}
}
谢谢!
编辑: 根据要求,这里是Button1_Click。正如我所说,它没有被召唤。
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />