我有一个FileUpload控件(它不在里面UpdatePanel),它的hasFile属性总是如此False.
<asp:FileUpload ID="certificateUploader" runat="server"/>
Run Code Online (Sandbox Code Playgroud)
任何想法?
我需要在我的应用程序中注册表单,我需要滚动,所以我做了以下
<ScrollViewer VerticalScrollBarVisibility="Visible" Height="780" MaxHeight="1800"
MaxWidth="477" VerticalAlignment="Top">
<ScrollViewer.Content>
<Grid Width="477" Height="728" MaxHeight="1800">
<!-- .......Form's Elements..... -->
</Grid>
</ScrollViewer.Content>
</ScrollViewer>
Run Code Online (Sandbox Code Playgroud)
没有滚动,我缺少什么?