ASPForums.Net RSS Feedhttp://www.aspforums.net/Handlers/RSS.ashxLatest additions to the content that appears on ASPForums.Net(c) 2013 www.aspforums.com. All rights reserved.WebSite Performance decreasing due to heavy page size<![CDATA[Hi,In my website for one project we have 5000+ records in sql database. If I give page size is 100 for gridview then the paze size showing 800kb in firebug net panel and it is taking 20-30 seconds to load webpage. If I give page size is 10 for gridview then the paze size showing 160kb in firebug net panel and it is taking 5-6 seconds to load webpage. If I give page size is 5for gridview then the paze size showing 130kb in firebug net panel and it is taking less than 6 seconds to load webpage. I noticed that due to heavy paze size the performance decreasing but as per my requirent the paze size should be 100 or above and the page should be load less than 2 seconds. Can anyone help me how can i achieve above senario??Note: I am using Ajax Update panels Thanks]]>http://www.aspforums.net/Threads/207684/WebSite-Performance-decreasing-due-to-heavy-page-size/http://www.aspforums.net/Threads/207684/WebSite-Performance-decreasing-due-to-heavy-page-size/Tue, 10 Apr 2012 01:46:05 GMTWant Site containing ASP.Net AJAX Control Toolkit Samples and examples<![CDATA[i want all the ajax controls with example]]>http://www.aspforums.net/Threads/869055/Want-Site-containing-ASPNet-AJAX-Control-Toolkit-Samples-and-examples/http://www.aspforums.net/Threads/869055/Want-Site-containing-ASPNet-AJAX-Control-Toolkit-Samples-and-examples/Wed, 27 Jun 2012 03:49:05 GMTusing grid in update panel<![CDATA[ i have above codebut the div.Visible = true; textbox1.Visible = true; are not visiblesecondaly the b1 click event happens only onceif i again click the script does not get executedfunction MouseUp(e){document.getElementById(&#39;b1&#39;).click();} protected void btnpb_Click(object sender, EventArgs e) { try { div.Visible = true; textbox1.Visible = true;}}&lt;asp:UpdatePanel ID=&#34;Panel1&#34; runat=&#34;server&#34;&gt; &lt;ContentTemplate&gt; &lt;asp:GridView ID=&#34;grid1&#34; runat=&#34;server&#34; &gt; &lt;/asp:GridView&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID=&#34;b1&#34; EventName=&#34;Click&#34; /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;br /&gt; &lt;asp:Button ID=&#34;b1&#34; runat=&#34;server&#34; Text=&#34;&#34; /&gt; ]]>http://www.aspforums.net/Threads/111199/using-grid-in-update-panel/http://www.aspforums.net/Threads/111199/using-grid-in-update-panel/Wed, 01 Feb 2012 00:27:06 GMTUsing ASP.Net AJAX AutoCompleteExtender in MasterPage<![CDATA[My master page code:&lt;%@ Master Language=&#34;C#&#34; AutoEventWireup=&#34;true&#34; CodeFile=&#34;test.master.cs&#34; Inherits=&#34;test&#34; %&gt;&lt;%@ Register Assembly=&#34;AjaxControlToolkit&#34; Namespace=&#34;AjaxControlToolkit&#34; TagPrefix=&#34;asp&#34; %&gt;&lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&gt;&lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&gt;&lt;head runat=&#34;server&#34;&gt; &lt;title&gt;&lt;/title&gt; &lt;asp:ContentPlaceHolder ID=&#34;head&#34; runat=&#34;server&#34;&gt; &lt;/asp:ContentPlaceHolder&gt;&lt;/head&gt;&lt;body&gt; &lt;form id=&#34;form1&#34; runat=&#34;server&#34;&gt; &lt;div&gt; &lt;asp:ContentPlaceHolder ID=&#34;ContentPlaceHolder1&#34; runat=&#34;server&#34;&gt; &lt;asp:ToolkitScriptManager ID=&#34;ToolkitScriptManager2&#34; runat=&#34;server&#34; EnablePageMethods=&#34;true&#34;&gt; &lt;/asp:ToolkitScriptManager&gt; &lt;asp:TextBox ID=&#34;txtContactsSearch&#34; runat=&#34;server&#34;&gt;&lt;/asp:TextBox&gt; &lt;asp:AutoCompleteExtender ServiceMethod=&#34;SearchCustomers&#34; MinimumPrefixLength=&#34;2&#34; CompletionInterval=&#34;100&#34; EnableCaching=&#34;false&#34; CompletionSetCount=&#34;10&#34; TargetControlID=&#34;txtContactsSearch&#34; ID=&#34;AutoCompleteExtender1&#34; runat=&#34;server&#34; FirstRowSelected=&#34;false&#34; UseContextKey=&#34;True&#34;&gt; &lt;/asp:AutoCompleteExtender&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/div&gt; &lt;/form&gt;&lt;/body&gt;&lt;/html&gt; Cs code: [System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()] public static string[] SearchCustomers(string prefixText, int count, string contextKey) { //return default(string[]); string[] movies = { &#34;Star Wars&#34;, &#34;Star Trek&#34;, &#34;Superman&#34;, &#34;Memento&#34;, &#34;Shrek&#34;, &#34;Shrek II&#34; }; return (from m in movies where m.StartsWith(prefixText, StringComparison.CurrentCultureIgnoreCase) select m).Take(count).ToArray(); } Plese help me out.. Where am i going wrong?]]>http://www.aspforums.net/Threads/124615/Using-ASPNet-AJAX-AutoCompleteExtender-in-MasterPage/http://www.aspforums.net/Threads/124615/Using-ASPNet-AJAX-AutoCompleteExtender-in-MasterPage/Fri, 12 Apr 2013 01:50:35 GMTUsing ASP.Net AJAX AnimationExtender Control in GridView<![CDATA[I am using the animation extender in my gridview which is working, however only the first row works. The rows following the first all display the data from row 1. &lt;asp:GridView runat=&#34;server&#34; ID=&#34;gvAvailable&#34; AutoGenerateColumns=&#34;False&#34; style=&#34;table-layout:fixed;&#34; DataSourceID=&#34;SqlDataSource1&#34; ForeColor=&#34;#333333&#34; GridLines=&#34;Both&#34; Width=&#34;825px&#34;&gt; &lt;AlternatingRowStyle BackColor=&#34;White&#34; /&gt; &lt;Columns&gt; &lt;asp:BoundField DataField=&#34;CourseName&#34; HeaderText=&#34;Course Name&#34; /&gt; &lt;asp:BoundField DataField=&#34;CourseDate&#34; HeaderText=&#34;Date&#34; /&gt; &lt;asp:BoundField DataField=&#34;StartTime&#34; HeaderText=&#34;Start Time&#34; /&gt; &lt;asp:BoundField DataField=&#34;EndTime&#34; HeaderText=&#34;End Time&#34; /&gt; &lt;asp:BoundField DataField=&#34;CourseLocation&#34; HeaderText=&#34;Location&#34; /&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton ID=&#34;lnkBtnColHelp&#34; runat=&#34;server&#34; Text=&#34;Click Here&#34; OnClientClick=&#34;return false;&#34; /&gt; &lt;div id=&#34;moveMe&#34; class=&#34;flyOutDiv&#34;&gt; &lt;div style=&#34;float:right;&#34;&gt; &lt;asp:LinkButton ID=&#34;lnkBtnCloseColHelp&#34; runat=&#34;server&#34; Text=&#34;x&#34; OnClientClick=&#34;return false;&#34; CssClass=&#34;flyOutDivCloseX&#34; /&gt; &lt;/div&gt; &lt;br /&gt; &lt;asp:Label ID=&#34;Label1&#34; runat=&#34;server&#34; Text=&#39;&lt;%# Bind(&#34;CourseDescription&#34;) %&gt;&#39;&gt;&lt;/asp:Label&gt; &lt;/div&gt; &lt;ajaxToolKit:AnimationExtender ID=&#34;AnimationExtender1&#34; runat=&#34;server&#34; TargetControlID=&#34;lnkBtnColHelp&#34;&gt; &lt;Animations&gt; &lt;OnClick&gt; &lt;Sequence&gt; &lt;EnableAction Enabled=&#34;false&#34;&gt;&lt;/EnableAction&gt; &lt;StyleAction AnimationTarget=&#34;moveMe&#34; Attribute=&#34;display&#34; Value=&#34;block&#34;/&gt; &lt;Parallel AnimationTarget=&#34;moveMe&#34; Duration=&#34;.5&#34; Fps=&#34;30&#34;&gt; &lt;Move Horizontal=&#34;-350&#34; Vertical=&#34;50&#34;&gt;&lt;/Move&gt; &lt;FadeIn Duration=&#34;.5&#34;/&gt; &lt;/Parallel&gt; &lt;Parallel AnimationTarget=&#34;moveMe&#34; Duration=&#34;.5&#34;&gt; &lt;Color PropertyKey=&#34;color&#34; StartValue=&#34;#666666&#34; EndValue=&#34;#FF0000&#34; /&gt; &lt;Color PropertyKey=&#34;borderColor&#34; StartValue=&#34;#666666&#34; EndValue=&#34;#FF0000&#34; /&gt; &lt;/Parallel&gt; &lt;/Sequence&gt; &lt;/OnClick&gt; &lt;/Animations&gt; &lt;/ajaxToolKit:AnimationExtender&gt; &lt;ajaxToolKit:AnimationExtender ID=&#34;AnimationExtender2&#34; runat=&#34;server&#34; TargetControlID=&#34;lnkBtnCloseColHelp&#34;&gt; &lt;Animations&gt; &lt;OnClick&gt; &lt;Sequence AnimationTarget=&#34;moveMe&#34;&gt; &lt;Parallel AnimationTarget=&#34;moveMe&#34; Duration=&#34;.7&#34; Fps=&#34;20&#34;&gt; &lt;Move Horizontal=&#34;350&#34; Vertical=&#34;-50&#34;&gt;&lt;/Move&gt; &lt;Scale ScaleFactor=&#34;0.05&#34; FontUnit=&#34;px&#34; /&gt; &lt;Color PropertyKey=&#34;color&#34; StartValue=&#34;#FF0000&#34; EndValue=&#34;#666666&#34; /&gt; &lt;Color PropertyKey=&#34;borderColor&#34; StartValue=&#34;#FF0000&#34; EndValue=&#34;#666666&#34; /&gt; &lt;FadeOut /&gt; &lt;/Parallel&gt; &lt;StyleAction Attribute=&#34;display&#34; Value=&#34;none&#34;/&gt; &lt;StyleAction Attribute=&#34;height&#34; Value=&#34;&#34;/&gt; &lt;StyleAction Attribute=&#34;width&#34; Value=&#34;400px&#34;/&gt; &lt;StyleAction Attribute=&#34;fontSize&#34; Value=&#34;14px&#34;/&gt; &lt;EnableAction AnimationTarget=&#34;lnkBtnColHelp&#34; Enabled=&#34;true&#34; /&gt; &lt;/Sequence&gt; &lt;/OnClick&gt; &lt;/Animations&gt; &lt;/ajaxToolKit:AnimationExtender&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt; &lt;asp:ImageButton runat=&#34;server&#34; ID=&#34;imgbtnRegister&#34; CommandArgument=&#39;&lt;%# Eval(&#34;ID&#34;) %&gt;&#39; CommandName=&#34;Register&#34; ImageUrl=&#34;~/Training/ST_Pics/register.png&#34; /&gt; &lt;asp:HiddenField id=&#34;hdnID&#34; runat=&#34;server&#34; value=&#39;&lt;%#Eval(&#34;ID&#34;) %&gt;&#39; /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;EditRowStyle BackColor=&#34;#2461BF&#34; /&gt; &lt;FooterStyle BackColor=&#34;#3b5998&#34; Font-Bold=&#34;True&#34; ForeColor=&#34;White&#34; /&gt; &lt;HeaderStyle BackColor=&#34;#3b5998&#34; Font-Bold=&#34;True&#34; ForeColor=&#34;White&#34; /&gt; &lt;PagerStyle BackColor=&#34;#2461BF&#34; ForeColor=&#34;White&#34; HorizontalAlign=&#34;Center&#34; /&gt; &lt;RowStyle BackColor=&#34;#EFF3FB&#34; /&gt; &lt;SelectedRowStyle BackColor=&#34;#D1DDF1&#34; Font-Bold=&#34;True&#34; ForeColor=&#34;#333333&#34; /&gt; &lt;SortedAscendingCellStyle BackColor=&#34;#F5F7FB&#34; /&gt; &lt;SortedAscendingHeaderStyle BackColor=&#34;#6D95E1&#34; /&gt; &lt;SortedDescendingCellStyle BackColor=&#34;#E9EBEF&#34; /&gt; &lt;SortedDescendingHeaderStyle BackColor=&#34;#4870BE&#34; /&gt; &lt;/asp:GridView&gt; &lt;asp:SqlDataSource ID=&#34;SqlDataSource1&#34; runat=&#34;server&#34; ConnectionString=&#34;&lt;%$ appSettings:DCconnString %&gt;&#34; SelectCommand=&#34;SELECT * FROM [ScheduleTraining]&#34;&gt; &lt;/asp:SqlDataSource&gt; ]]>http://www.aspforums.net/Threads/658894/Using-ASPNet-AJAX-AnimationExtender-Control-in-GridView/http://www.aspforums.net/Threads/658894/Using-ASPNet-AJAX-AnimationExtender-Control-in-GridView/Wed, 03 Oct 2012 10:19:57 GMTUploadify jQuery Plugin in ASP.Net Ajax TabControl<![CDATA[Ajax tab change results init of uploadify, So upon tab change FileUploader turn back to its native mode, only allowing one file interaction, Any ideas on how to resolve this issue?]]>http://www.aspforums.net/Threads/110665/Uploadify-jQuery-Plugin-in-ASPNet-Ajax-TabControl/http://www.aspforums.net/Threads/110665/Uploadify-jQuery-Plugin-in-ASPNet-Ajax-TabControl/Tue, 29 May 2012 23:58:24 GMTUpload image using AJAX in ASP.Net<![CDATA[can we upload images in aspmeans i have a button and after clicking it dialoag box should open and after selecting any 1 image from it i should be able to upload itlike we do in facebook and other social networking sites]]>http://www.aspforums.net/Threads/705823/Upload-image-using-AJAX-in-ASPNet/http://www.aspforums.net/Threads/705823/Upload-image-using-AJAX-in-ASPNet/Mon, 11 Jun 2012 06:10:10 GMTUpdate Panel For Label Control<![CDATA[Sir,working on .net framework 3.5 with vbI have displayed 50% of text on label control..then i have given a dynamic link to Read More.when i clicks on Read More it passes query string of id of that content to same page which shows full content.Now, what I want is when I clicks on Read More link the page postback then loads the full content. So, is there any way to avoid postback using update Panel for any links generated dynamically on Label control.....? ]]>http://www.aspforums.net/Threads/416588/Update-Panel-For-Label-Control/http://www.aspforums.net/Threads/416588/Update-Panel-For-Label-Control/Thu, 10 May 2012 08:36:24 GMTUnable to update control in Master page from content page.<![CDATA[Hi, I have a marqueein master page without any updatepanel .Am updating the content of marquee from content page but it does not reflect. e.g: ((HtmlGenericControl)Master.FindControl("maq1")).InnerText =" fdf fgf gf"; Thanks. ]]>http://www.aspforums.net/Threads/109038/Unable-to-update-control-in-Master-page-from-content-page/http://www.aspforums.net/Threads/109038/Unable-to-update-control-in-Master-page-from-content-page/Tue, 25 Sep 2012 04:07:58 GMTUnable to type in ASP.Net AJAX ComboBox control<![CDATA[I want search the data in combobox .i am using AutoCompleteMode="SuggestAppend" and DropDownStyle="Simple"But I can't type any text in combo boxPlease any one help me...&lt;%@ Page Title=&#34;Home Page&#34; Language=&#34;C#&#34; MasterPageFile=&#34;~/Site.master&#34; AutoEventWireup=&#34;true&#34; CodeFile=&#34;Default.aspx.cs&#34; Inherits=&#34;_Default&#34; %&gt; &lt;%@ Register Assembly=&#34;AjaxControlToolkit&#34; Namespace=&#34;AjaxControlToolkit&#34; TagPrefix=&#34;cc1&#34; %&gt;&lt;asp:Content ID=&#34;HeaderContent&#34; runat=&#34;server&#34; ContentPlaceHolderID=&#34;HeadContent&#34;&gt;&lt;/asp:Content&gt;&lt;asp:Content ID=&#34;BodyContent&#34; runat=&#34;server&#34; ContentPlaceHolderID=&#34;MainContent&#34;&gt;&lt;asp:ScriptManager ID=&#34;sp1&#34; runat=&#34;server&#34;&gt;&lt;/asp:ScriptManager&gt;&lt;cc1:ComboBox ID=&#34;c1&#34; runat=&#34;server&#34; AutoCompleteMode=&#34;SuggestAppend&#34; DropDownStyle=&#34;Simple&#34;&gt;&lt;/cc1:ComboBox&gt; &lt;/asp:Content&gt; protected void Page_Load(object sender, EventArgs e) { if (IsPostBack == false) { bind_dg(); } } private void bind_dg() { string constr = ConfigurationManager.ConnectionStrings[&#34;connect&#34;].ConnectionString; string query = &#34;select surgery_name from surgery_master order by surgery_name&#34;; SqlCommand cmd = new SqlCommand(query); using (SqlConnection con = new SqlConnection(constr)) { using (SqlDataAdapter da = new SqlDataAdapter()) { cmd.Connection = con; da.SelectCommand = cmd; using (DataTable dt = new DataTable()) { da.Fill(dt); if (dt.Rows.Count &gt; 0) { for (int i = 0; i &lt; dt.Rows.Count; i++) { c1.Items.Add(dt.Rows[i][&#34;surgery_name&#34;].ToString()); } } } } } } ]]>http://www.aspforums.net/Threads/107470/Unable-to-type-in-ASPNet-AJAX-ComboBox-control/http://www.aspforums.net/Threads/107470/Unable-to-type-in-ASPNet-AJAX-ComboBox-control/Mon, 23 Jul 2012 02:55:45 GMTTo add ajax calendar extender with image should pop up below or above the text<![CDATA[I have done like below code, but problem is, it is pop up somewhere in the page., not right below the textbox.(in Google crome only )So can anyone help me regarding this..my code is:&lt;asp:TextBox ID="txt_apptdate" runat="server" CssClass="lefttd" Width="180px" Height="24px"&gt;&lt;/asp:TextBox&gt; &lt;cc1:CalendarExtender ID="CalendarExtender3" runat="server" Format="dd/MM/yyyy" TargetControlID="txt_apptdate" OnClientDateSelectionChanged="checkDate" PopupButtonID="imgCal"/&gt; &amp;nbsp;&amp;nbsp;&lt;asp:ImageButton ID="imgCal" runat="server" ImageUrl="~/images/calendar.jpg" CausesValidation="false" /&gt;&amp;nbsp;&amp;nbsp;Pop up is not getting below the textbox in Google crome only please help me soon]]>http://www.aspforums.net/Threads/158063/To-add-ajax-calendar-extender-with-image-should-pop-up-below-or-above-the-text/http://www.aspforums.net/Threads/158063/To-add-ajax-calendar-extender-with-image-should-pop-up-below-or-above-the-text/Sat, 18 Aug 2012 04:27:23 GMTShow ASP.Net GridView current selected row data when clicked in AJAX ModalPopupExtender<![CDATA[hello,I am using Ajax toolkit first time I dont know how to use it in girdview I am using Ajax : ModalPopupExtender if I click on studnetid then Student info pop up page should comeCan you please help me ? &lt;asp:TemplateField HeaderText ="StudentID" SortExpression="StudentID" &gt; &lt;ItemTemplate &gt; &lt;asp:LinkButton ID="StudentIDlinkButton" runat="server" Text='&lt;%#Eval("StudentID") %&gt;' OnClick="ShowPopupwindowforStudentID" /&gt; &lt;asp:Panel ID="PanelforStudentDetails" runat="server" Width="200px" Height="200px" Style="display: none;" Direction="LeftToRight"&gt;Student Id &lt;br /&gt;&lt;asp:Button ID="btnDummy" text = "OK" runat="server" /&gt; &lt;/asp:Panel&gt;&lt;br /&gt; &lt;asp:ModalPopupExtender ID="PopupwindowforStudent" runat="server" TargetControlID="StudentIDlinkButton" PopupControlID="PanelforStudentDetails" OkControlID="btnDummy"&gt; &lt;/asp:ModalPopupExtender&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; ]]>http://www.aspforums.net/Threads/161289/Show-ASPNet-GridView-current-selected-row-data-when-clicked-in-AJAX-ModalPopupExtender/http://www.aspforums.net/Threads/161289/Show-ASPNet-GridView-current-selected-row-data-when-clicked-in-AJAX-ModalPopupExtender/Mon, 18 Jun 2012 09:53:03 GMTSet Title for Content Pages when working with Master Pages in ASP.Net<![CDATA[How can we add titles to each content pages which inherits from mater pages in asp.net?Can u give the code?]]>http://www.aspforums.net/Threads/595053/Set-Title-for-Content-Pages-when-working-with-Master-Pages-in-ASPNet/http://www.aspforums.net/Threads/595053/Set-Title-for-Content-Pages-when-working-with-Master-Pages-in-ASPNet/Fri, 17 May 2013 04:08:18 GMTSet Cursor focus in TextBox inside TabPanel of ASP.Net Ajax TabContainer control<![CDATA[i want to focus my cursor on the starting position but it can't be possible in ajax how it can be done in ajax control.can you please help me?]]>http://www.aspforums.net/Threads/176407/Set-Cursor-focus-in-TextBox-inside-TabPanel-of-ASPNet-Ajax-TabContainer-control/http://www.aspforums.net/Threads/176407/Set-Cursor-focus-in-TextBox-inside-TabPanel-of-ASPNet-Ajax-TabContainer-control/Sat, 14 Jul 2012 00:12:05 GMTSend Receive data between server and client without postback<![CDATA[as per my flow on every click i have a postback without which i cannot store data to client or serveri have 2 ways of data storing one is client side in javascript variables in form of array(which can be lost on postback)the data to be stored are of differnt types some are numeric , some single characters some sepearted with commaother way is on each post back save the data in a session varibale on server &amp; then accesscurrently i have second wayconsidering both the ways and in accrodance with the current flow which is best for maintenance &amp; access speed reasking as i am notyet cleared abt the things ]]>http://www.aspforums.net/Threads/122350/Send-Receive-data-between-server-and-client-without-postback/http://www.aspforums.net/Threads/122350/Send-Receive-data-between-server-and-client-without-postback/Wed, 07 Mar 2012 04:18:01 GMTSave Image Files to Database using ASP.Net AJAX AsyncFileUpload Control<![CDATA[HiI used this code to uploading image and insert it to database string path = Server.MapPath(&#34;.&#34;) + &#34;\\../Upload\\&#34;; string[] validext = { &#34;.jpg&#34;, &#34;.gif&#34;, &#34;.png&#34;, &#34;.rar&#34; }; string ext = System.IO.Path.GetExtension(AsyncFileUpload1.PostedFile.FileName); if (Array.IndexOf(validext, ext.ToLower()) &lt; 0) { lblMessage.Text = &#34;File format not recognised. Upload Image/&#34;; return; } //4-Get File Name string filename = System.IO.Path.GetFileName(AsyncFileUpload1.PostedFile.FileName); //5-Get File Exist and if (true)Generate New Name while (System.IO.File.Exists(path + &#34;\\&#34; + filename)) filename = &#34;1&#34; + filename; //6-Save File to Server AsyncFileUpload1.PostedFile.SaveAs(path + filename); SqlCommand _cmd = new SqlCommand(&#34;Fileup1&#34;, _cn); _cmd.CommandType = CommandType.StoredProcedure; _cn.Open(); _cmd.Parameters.AddWithValue(&#34;@image&#34;, AsyncFileUpload1.FileBytes); _cmd.Parameters.AddWithValue(&#34;@Behcode&#34;, &#34;6666&#34;); _cmd.ExecuteNonQuery(); _cn.Close();my problem is that it didn't insert image name in database it save some unknown Characters in database so when i want bind my image from database it didn't show image .]]>http://www.aspforums.net/Threads/133894/Save-Image-Files-to-Database-using-ASPNet-AJAX-AsyncFileUpload-Control/http://www.aspforums.net/Threads/133894/Save-Image-Files-to-Database-using-ASPNet-AJAX-AsyncFileUpload-Control/Sat, 30 Jun 2012 22:09:17 GMTRefresh Part of ListView Item periodically using jQuery AJAX in ASP.Net<![CDATA[i have taken a list view, in that i have multiple item controls. from that i want to refresh one particular label frequently and data of that label comes from database it checks that particular data each time when label refresh so, how can i make this?eg. in any online auction site a name of unique bidder changes frequently]]>http://www.aspforums.net/Threads/521981/Refresh-Part-of-ListView-Item-periodically-using-jQuery-AJAX-in-ASPNet/http://www.aspforums.net/Threads/521981/Refresh-Part-of-ListView-Item-periodically-using-jQuery-AJAX-in-ASPNet/Wed, 20 Mar 2013 02:49:48 GMTRE: Check Username Availability in ASP.Net using AJAX PageMethods<![CDATA[Hi! I have tried you code, but there is error... do u mind helping me? Thanks :DCompilation ErrorDescription: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS1525: Invalid expression term ')'Source Error: Line 8: &lt;script type = "text/javascript"&gt;Line 9: function ShowAvailability() {Line 10: PageMethods.CheckUserName(document.getElementById("&lt;%=txtUserName.LoginID%%&gt;").value, OnSuccess); Line 11: }Line 12: function OnSuccess(response) {]]>http://www.aspforums.net/Threads/156219/RE-Check-Username-Availability-in-ASPNet-using-AJAX-PageMethods/http://www.aspforums.net/Threads/156219/RE-Check-Username-Availability-in-ASPNet-using-AJAX-PageMethods/Sat, 30 Jun 2012 07:08:35 GMTQuestion for cascading dropdown<![CDATA[Sir,I am working on Visual Studio 2005 I have three dropdowns. - first is for Country- second for states- third for city all three having separate tables in database. States related according countryid and City are related according coutryid and stateidNow when i select country dropdown, state dropdown should populate according it and offcourse city dropdown too. But i want to avoid postback. Would this be achieved by avoiding postback to retrieve there desired data?hope you should do some needful. ]]>http://www.aspforums.net/Threads/155508/Question-for-cascading-dropdown/http://www.aspforums.net/Threads/155508/Question-for-cascading-dropdown/Tue, 24 Apr 2012 08:24:02 GMTProblem Using 2 ASP.Net AJAX modal popups in a single page<![CDATA[i have one modal popup in a page already &amp; functioning properlyi added another modal popup but its not getting displayed as it shld in the center ]]>http://www.aspforums.net/Threads/274383/Problem-Using-2-ASPNet-AJAX-modal-popups-in-a-single-page/http://www.aspforums.net/Threads/274383/Problem-Using-2-ASPNet-AJAX-modal-popups-in-a-single-page/Mon, 14 May 2012 00:25:13 GMT