Hi,
I have very simple project in vs2010 and mssql 2008. with only single page for example.
when i run project its take too much time for loading..
when i change the value of radio button it will take some process.
i use updatepanel also and autopostback=true
radio button takes time for process. between changing the value.
i use dropdown in another Project same like this. it also take time for process.
how can i reduce this process. any suggestion acceptable.
thanks in advance
jack
<%@ Page Title="" Language="C#" MasterPageFile="~/NewFolder1/MasterPage.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="NewFolder1_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Panel ID="Panel1" runat="server">
<table>
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:RadioButtonList ID="rdbStatus" runat="server" RepeatDirection="Horizontal" AutoPostBack="True"
CssClass="txttextlable" TabIndex="1" Style="background: none;">
<asp:ListItem>New</asp:ListItem>
<asp:ListItem>Contract</asp:ListItem>
<asp:ListItem>Inquiry</asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox4" runat="server" AutoPostBack="True"></asp:TextBox>
</td>
</tr>
</table>
<asp:Button ID="Button1" runat="server" Text="Button" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>