WCF / ASMX :: Show Loading Icons While Processing Back End Code

Jul 19, 2010

just wanna ask you something. My requirement is that I need to download a large file.So,at the web server, there are a lot of zip files are packeted and when user request a link to download the file, those packeted zipped files will be combined into one large file and download it. So, I have done all the others steps. what I want to know is when user clicked that download link, I pop up another web form and wanna show processing progress or loading icon while zipped files are unzipping. Because unzipping time may take around 3 to 5 minutes depends on file sizes. Now I called the unzip function at the page load event, but it does not appear anything until unzip function has finished. guide me in which event or what kind of mechanism or technology should I use to show icon at the UI while processing at back end code.

View 1 Replies


Similar Messages:

Web Forms :: Show Processing Message While Page Loading Upon On Post Back

Apr 28, 2010

I am using ASP.NET 2.0 with C#(No AJAX) in my project. In a particular web page, when the a button is clicked, some server intensive C# code runs before the same page is displayed again with the results. While code execution happens on the server in response to Button_Click event, a blank white page is shown to user on his browser in between post backs. How do i show a message in this case, that the processing is still going on and ask the user to wait? I have used javascript to show a message on page unload. But this message is also erased when the page is posted back to the server and the user sees a blank white page on his browser. How do i avoid this white page? Is there a way to show a message in the blank white page? How do i show a processing Message while the page is loading upon on Post Backs to the same Page.

View 1 Replies

AJAX :: Update Panel Post Back To Show Processing

May 11, 2010

I have a page that the users get redirected to. On page load this page runs a bunch of code behind that and loads table. The processing could take a few seconds to minutes depending on how big a report is run. Is there any way to completely render the page before automaticly kicking off the code? I am trying to stay away from forcing the user to click on another button.

View 3 Replies

Web Forms :: How To Show A Processing Message While Page Is Loading In Response To A Button Click Event

Apr 28, 2010

I am using ASP.NET 2.0 with C#(No AJAX) in my project. In a particular web page, when the a button is clicked, some server intensive processing occurs before the same page is displayed again with the results. While code execution happens on the server in response to Button_Click event, a blank white page is shown to user on his browser in between post backs.

How do i show a message in this case, that the processing is still going on and ask the user to wait.

I have used javascript to show a message on page unload. But this message is also erased when the page is posted back to the server and the user sees a blank white page on his browser. How do i avoid this white page? Is there a way to show a message in the blank white page ?

View 3 Replies

Looking For A Breakdown Of Processing - Does All Code Come Back As HTML To Your Browser

Oct 21, 2010

Can someone give me a basic run down of how the steps go from clicking a button on a web page to it getting returned to your browser.

does all code come back as HTML to your browser even if its codded in the ASP.NET environment?

from PC ... to web server .. back to browser?

View 4 Replies

Web Forms :: Show Loading Image On Every Post Back?

Dec 17, 2010

Loading image on every postback ...

I have three textbox say textbox1,textbox2,textbox3, and a button.

After user entering the values in the respective textbox, he will click button. It cause postback, that time i need to show loading image, until the value is inserted into the database.

On the whole the user should not feel that the page is postback every time when he click the button, instead of it i need to show loading image.

View 3 Replies

VS 2005 - Show Processing Messages From Code Behind

Sep 15, 2011

I have a GridView where user can select multiple jobs to be processed. When user hits the 'Run" button, selected jobs are being processed, at this point I would like to show a message as the application steps through each job, like "Now Processing ABC", "Now processing DEF" etc

Is there an easy way to do this (from code behind). Could I force a postback and have a label / text box being displayed with different messages ???

View 7 Replies

When User Back Any Previous Tab(page) The Will Be Show The Previous Data Without Loading 2nd Time?

Jul 26, 2010

I am developing a web application in ASP.NET3.5 with C#. I also using Telerik RadAjax Control. When user click the menu then open the page with a new tab(Like web Browser).I want to create, when user back any previous tab(page) the will be show the previous data without loading 2nd time( like browser tab). Is it Possible ?

View 2 Replies

Series Of Documents Displayed With Hide/show Icons JQuery?

Jan 26, 2011

I've got a page with a repeater and a bunch of documents that should be hidden to start and then shown with a plus sign next to each.My question is - do I have to assign unique ID to each document DIV to make it be able to toggle hidden and shown?

View 4 Replies

AJAX :: Content Loading / Processing Image Or Indicator

Mar 29, 2010

In part of my web page, I have couple of asp:image Thumbnails, onclick I use ajax modal popup extender to show the imgae in full size which are working fine, what I need to add is to have a processing image or indicator both in thumbnail and modal popup extender, I also have ajax autocomplete that is working fine, I need to add some indicator or processing image to it as soon as user start typing a word.

View 1 Replies

WCF / ASMX :: Xml Processing Instructions In XmlDocument Returned By Web Service

Jan 20, 2010

I'm having a confusing issue concerning web services, XmlDocument return type and XmlProcessingInstruction. I've basically got a web service that returns an XmlDocument containing a list of search results. In order to make it a little more user-friendly, I'd like the XmlDocument to include a Processing Instruction (<?xml-stylesheet type='text/xsl' href='book.xsl'?>) for the inclusion of an XSL stylesheet. Is there something in the ASP.NET pipeline that would prevent this? I'm using the following code (lifted from the MSDN documentation of the CreateProcessingInstruction() method) in a test WebMethod and it doesn't seem to include the processing instruction.

[Code]....

All I'm getting in the response is the following:

[Code]....

View 3 Replies

Web Forms :: Loading On Post Back Like Facebook On Every Post Back Request

Nov 30, 2010

I have four textbox and a button in my page. After filling the textbox. When the user click save button. A loading image should be displayed. User should not feel that the page is postback to the server,Some thing like in facebook loading image.

View 5 Replies

WCF / ASMX :: How To Asynchronous Call And Waiting For Function To Finish Processing

May 10, 2010

I have to call a function to run a report through a web service, then call another function to get the data but only after the 1st function has finished processing. How do I make c# wait till the first function has finished processing to run the second function?

my code looks something like:

NetworkCredential Cred = new NetworkCredential("uid", "pw");
ReportWebService reportService = new ReportWebService();
reportService.Credentials = Cred;
string s = reportService.runReportAsync("0ede9884e6394daf73fa418e9bffd4fc");
string report = reportService.getReportData(s);

This code will break because s is not set since the function (runreportasynch) has not finished running to produce s.

View 1 Replies

AJAX :: How To Show Processing Indicator

Jan 22, 2010

When I click the button, it will process for a certain time. How to show to user that it is processing?

(1) Show Processing indicator??
(2) button disabled with text??
(3) Masked the page??

When it has been finished, all return to normal. This is the basic requirement.

View 5 Replies

Web Forms :: Scroll Back To Drop Down List After Auto Post Back In Code Behind?

Feb 22, 2011

Using Vb.Net 2003 Asp.Net 1.1

I have a dynamic data bound drop down list, when the user selects thier selected item I have to use the autopostback feature.

Problem is: when the page comes back it is at the top of the page not where i have the control.

I don't really need it to focus back on the dropdownlist but to scroll to it, I want to do it in the code behind.

Any "New" ways to do it, I mean new as in code from like 2010 instead of old code from the early days.

I really don't want to use Page.Register new Script...... code if I can avoid it.

What would be cool is a ScrollToControl() Function for my code behind that worked but didn't register script.

View 3 Replies

AJAX :: How To Return Back Back To Code Behind File After Cascading Dropdown Calling

Aug 29, 2010

I have a cascading dropdown. After the dropdown is populated(it is in another file) i would like to return back to the original form where the control is placed. is there anyway of doing it

View 4 Replies

AJAX :: Show An Exit Popup On One Of Processing Pages?

Aug 28, 2010

I have a requirement to show an Exit Popup on one of our processing pages. I am showing the exit popup by registering a client side javascript like

window.onbeforeunload = ShowExitPopUp();

The popup executes fine if you close the window, or try to type in a different URL. However the issue is that my processing page is also performing a "Response.Redirect" on the server side once the process completes. When response.redirect happens the exitpopup also shows up. Is there a way to have the exit popup not show up in that case?

Since my server side code is running through an UpdatePanel, so I have tried registering the following, in an attempt to remove ExitPopup from client side. However this doesn't work since server side redirection happens before end request.

Sys.WebForms.PageRequestManager.getInstance().add_endRequest(RemoveExitPopup);

View 1 Replies

AJAX :: Show Processing When Button Clicked In The Updatepanel?

Aug 17, 2010

I have below code to show processing when button clicked in the updatepanel. But it does not disable the page and processing icon is not showing in the centre. How to disable the page and put the processing icon in the centre when button is clicked according to below code?

<%@ Page Language="C#" MasterPageFile="~/Template.master" AutoEventWireup="true" CodeFile="TESTForm.aspx.cs" Inherits="Reports_TESTForm" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<%@ Register Assembly="Flan.Controls" Namespace="Flan.Controls" TagPrefix="cc1" %>
<asp:Content ID="ContentMain" ContentPlaceHolderID="MainContent" Runat="Server">
<div>TEST Form</div><p></p>
<asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate>

// .........Coding...............

</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="btnExport" />
</Triggers>
</asp:UpdatePanel>
<asp:UpdateProgress ID="udProgress" AssociatedUpdatePanelID="UpdatePanel1" runat="server" DisplayAfter="100" Visible="true" DynamicLayout="true">
<ProgressTemplate>
<div>
<img border="0" src="../Images/Global/ProgressIndicator.gif" />
</div>
</ProgressTemplate>
</asp:UpdateProgress>
<cc1:UpdateProgressOverlayExtender ID="UpdateProgressOverlayExtender3" runat="server"
CssClass="updateProgress" TargetControlID="udProgress" OverlayType="Browser" />
</asp:Content>

View 3 Replies

Web Forms :: How To Show Processing Image On Page Load

Jan 10, 2014

I want to show a processing image on every page load how to do that...Not only in button click it should happen in all page load. It should start when page load starts and ends when page load completed.

View 1 Replies

Web Forms :: Show Busy Indicator When Processing During Postback

Jan 28, 2013

Looking for code to show the busy indicator while the operation is doing...

View 1 Replies

AJAX :: Show Processing Image Until JQuery Call Is Completed

Nov 5, 2013

I have a textbox on which i have call ajax to check the product is already exist. I have done it ,now i want to show the processing image when the textbox's onchange event occurs ... My code isĀ :

.aspx:

<script>
function ValidateCategory() {
var product_category_title = $("#txttitle").val();
$.ajax({
type: "POST",

[Code] ....

View 1 Replies

AJAX :: Scenario: OpenModalDialog -> LoadData -> Show Data / Show The Data When They Are Ready And Interrupt The Loading Message?

Dec 19, 2010

I have to implement this common scenario but I'm getting in trouble (I'm new in asp)

I have to open a modalDialog, then I want an animation to indicate a "loading message" and when the data are ready

I want show them ina grid view. How can show the data when they are ready and interrupt the loading message?

View 2 Replies

Web Forms :: Login Page To 9 Redirects Back To Itself Before Finally Loading?

Feb 21, 2011

I would periodically get a message stating "too many redirects". I used debug this moring and found out that my login page, even with no code in the page_load and no script does 9 redirects back to itself. I use forms authentication and assume it has something to do with that.

View 3 Replies

Javascript - Jquery Loading Values On Page After Post Back?

Oct 26, 2010

Im currently trying to use a jQuery plugin:jQuery Autocomplete TokenizerNow after posting back the page, I want to re-load the values back into the textbox for whatever items had been entered.Now the jQuery on the page is like below:

$(document).ready(function () {
$("#<%=txtPeople.ClientID %>").tokenInput("Handler.ashx", {
hintText: "Type in a name",
noResultsText: "No results",
searchingText: "Searching...",
[code]...

View 1 Replies

Web Forms :: Adding Code To Page Before Server Processing?

Feb 18, 2010

I was wondering if there was anyway to populate the page with asp.net code like "<asp:Repeater ID="rptProducts" runat="server">MORE_CODE</asp:Repeater>" and then have the server use that code on the page. I'm not sure if i'm making sense. Like writing the asp.net front end code to the page dynamically before the .net engine generates the output html.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved