簡體   English   中英

ASP.NET C#更新面板,文件上載控制以及回發時維護和保存信息

[英]ASP.NET C# Update Panel, File Upload Control and maintaining and saving information on postback

我正在用asp.net C#設計一個名為“ myprofile”的網頁。 從上到下的結構如下:文件上傳控件(用於徽標),下拉菜單(用於酒店類型),富文本框(用於聯系信息-額外:粗體,斜體,超鏈接等功能),下拉菜單(用於位置)。

我的問題是在回發時保持文件上傳控件和富文本框的值。 我也無法在數據庫中插入值,因為什么也沒有發生。 我嘗試了很多事情。 最后,我將設計設置如下:

<asp:FileUpload ID="FileUpload1" runat="server" />

<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
 <ContentTemplate>
 <fieldset style="width:30%">
 <legend>Update Panel-1</legend>

 <br />(Type of Hotel)<br /><br />
 <asp:DropDownList ID="DropDownTypeOfHotel" runat="server" CssClass="cssdropdown"></asp:DropDownList>


 <br />(Contact Information Here)<br /><br />
 <asp:TextBox ID="RichTextBoxContactInfo" runat="server"></asp:TextBox>

 <br />(Location)<br /><br />
 <asp:DropDownList ID="DropDownListLocation" runat="server" CssClass="cssdropdown"></asp:DropDownList>


 </fieldset>
 </ContentTemplate>
</asp:UpdatePanel>

<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
 <ContentTemplate>
 <fieldset style="width:30%">
 <legend>Update Panel-2</legend>

 <asp:Label ID="Label1" runat="server" Text="" ForeColor="Red"></asp:Label>
 <br /><br />
 <asp:Button ID="btnUpdate2" runat="server" Text="Update Both Panels" OnClick="btnUpdate2_Click" />

 </fieldset>
 </ContentTemplate>
</asp:UpdatePanel>

我的代碼也位於這里:

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        loadHotelType();
    }
    Page.Form.Attributes.Add("enctype", "multipart/form-data");

}

protected void btnUpdate2_Click(object sender, EventArgs e)
{
    if (DropDownTypeOfHotel.SelectedIndex > 0)
    {            
            if (DropDownListLocation.SelectedIndex > 0)
            {
                if (!string.IsNullOrEmpty(RichTextBoxContactInfo.Text))
                {
                    Label1.Text = "Cool!";
                    insert();
                }
                else
                {
                    Label1.Text = "Kindly add contact info!";
                }
            }
            else
            {
                Label1.Text = "Kindly select location!";
            }
    }
    else
    {
        Label1.Text = "Kindly select type of hotel!";
    }
}


public void loadHotelType()
{
    DropDownTypeOfHotel.Items.Insert(0, "--Select Type of Hotel/Supplier--");
    DropDownTypeOfHotel.Items.Insert(1, "2 star");
    DropDownTypeOfHotel.Items.Insert(2, "3 star");
    DropDownTypeOfHotel.Items.Insert(3, "5 star");

    DropDownListLocation.Items.Insert(0, "--Select Location of Hotel/Supplier--");
    DropDownListLocation.Items.Insert(1, "Canada");
    DropDownListLocation.Items.Insert(2, "USA");
    DropDownListLocation.Items.Insert(3, "LA");
}

public void insert()
{
    int img_logo = 0;
    static byte[] btlogo_img;

    if (FileUpload1.PostedFile.ContentLength != 0)
    {
        btlogo_img = new byte[FileUpload1.PostedFile.ContentLength];
        HttpPostedFile up1 = FileUpload1.PostedFile;
        up1.InputStream.Read(btlogo_img, 0, (int)FileUpload1.PostedFile.ContentLength);
        img_logo = 1;
    }

    if (img_logo == 1)
    {
        con1.Close();
        con1.Open();
        SqlCommand cmd = new SqlCommand("insert into file values('" + FileUpload1.PostedFile.FileName + "','" + btlogo_img + "')", con1);
        cmd.ExecuteNonQuery();
        con1.Close();
    }
    else
    {
        Label1.Text = "Kindly select logo!";
    }
}

請同樣地建議我。

我找到的最簡單的解決方案是保留控件,這些控件在回發時會失去價值,位於更新面板之外,而將所有其他控件保留在更新面板中。

這真的對我有用!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM