zoukankan      html  css  js  c++  java
  • 技術問題

    如何取得GridView中的HyperLinkField 的Text 

     HyperLink href = (HyperLink)row.Cells[0].Controls[0];
                string text = href.Text;

    怎样在UpdatePanel里使用FileUpload控件
    HTML:
        <div>
            
    <atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
            
    </atlas:ScriptManager>
            
    <atlas:UpdatePanel ID="UpdatePanel1" runat="server">
                
    <ContentTemplate>
                    
    <asp:FileUpload ID="FileUpload1" runat="server" /><asp:Button ID="cmdButton1" runat="server"
                        Text
    ="Upload" /><asp:Label ID="Label1" runat="server" Text=""></asp:Label>
                
    </ContentTemplate>
            
    </atlas:UpdatePanel>
       
            
    <asp:Button ID="cmdButton2" OnClick="cmdButton2_click"  runat="server" Text="Full post back" /> 
            
    </div>

    CODE BEHIND:
        Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load

            
    Me.cmdButton1.Attributes.Add("onclick", Page.ClientScript.GetPostBackEventReference(Me.cmdButton2, ""))

        
    End Sub


        
    Protected Sub cmdButton2_Click(ByVal sender As ObjectByVal e As System.EventArgs)
            
    If Me.FileUpload1.HasFile Then
                System.Threading.Thread.Sleep(
    1000)
                
    Me.Label1.Text = Me.FileUpload1.FileName
            
    End If
        
    End Sub

  • 相关阅读:
    TcxComboBoxProperties下拉框填充
    Delphi用QJSON解析JSON格式的数据 【转】
    Delphi的idhttp报IOHandler value is not valid错误的原因[转]
    RelayCommand
    ViewModelBase && ObservableObject
    MvvmLight ToolKit 教程
    WPF中的数据验证
    MvvmLight ToolKit .Net4.5版本 CanExecute不能刷新界面bug
    微软虚拟学院MVA 字幕获取方法
    WPF Binding INotifyPropertyChanged 多线程 深入理解
  • 原文地址:https://www.cnblogs.com/jacker1979/p/1090053.html
Copyright © 2011-2022 走看看