C# - Page Not Rendering Until BackgroundWorker.RunWorkerAsync Completes?
Jun 8, 2010
I have an aspx page that on a button click creates a BackgroundWorker and then calls the RunWorkerAsync method. In my aspx file I have set Async='true' but when I run the application and click the button it appears as though the page waits to refresh until the processing of the BackgroundWorker is done. How do I get control to return to the page (and have the page refresh) after the BackgroundWorker is created and started?
BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += RunJob;
worker.RunWorkerCompleted += JobCompleted;
worker.RunWorkerAsync();
View 1 Replies
Similar Messages:
Mar 13, 2011
I have several functions running on a postback that can take a little time to complete.
When postback is initiated I show a loading image with this code:
function showLoader()
{
document.getElementById("<%=loadingImage.ClientID%>").style.visibility="visible";
}
I want to be able to add code to this function so if user tries to leave at this point they are informed the operation is not complete.
[code]....
how I can tweak to just show when user leaves page and not when postback completes?
View 1 Replies
Jan 19, 2011
I have an Ajax auto complete textbox in my .NET 4.0 asp.net page via a web service, but the browser auto complete dropdownlist feature shows up on top of my .net auto complete dropdownlist.
Is there a way to make sure the browsers auto complete feature does not popup on this textbox? Almost like an override to make sure the browser ?
View 1 Replies
Jul 24, 2010
I have modified the sample HomeController to illustrate I problem that I have in my real application. In my real application I want a user to not wait for a longer running background process. I found that the response is not being returned to the user until the background process has finished which defeats the purpose of having a background task. Here is my modified sample MVC 2 application to illustrate.
[Code]....
When I click on About from the home page it takes ~20 seconds for the About page to appear. If I remove the Sleep(20000) from the background task then the page appears instantly. I expect a BackgroundWorker task to run in the background! What am I doing wrong?
View 3 Replies
Aug 19, 2010
I have an ASP.NET site and I've been doing some work refactoring code to try to remove some long running processes (in the order of an hour) from the actual http Request by creating a BackgroundWorker and sending the work off to that to process. This was running fine on cutdown tests but when I applied the logic to the real code I found problems accessing Session variables from the code running in the Background Worker. It seems that the HttpContext object that was passed has a null session and if I ask for HttpContext.Current I get null back.
I'm assuming that this is because they are in a different thread and that the session and HttpContext.Current are both reliant on being in the same thread. Is there any way I can get access to the Session from the background worker or am I stuck with finding all the variables I need from session and putting them in an usable data structure and then putting them back in session (if appropriate) afterwards? It obviously complicates the refactor massively if I need to do this so I'd rather not.how I might do this other than BackgroundWorker processes
View 1 Replies
Jun 17, 2010
to update a part of form before the request completes?for example, I have placed following code in button1_click
lbl1.text = "1"
system.threading.thread.sleep(2000)
lbl1.text = "2"[code]...
so what i want is, lbl1's value should be changed to 1 then to 2 after 2 second and then to 3 after another 2 seconds, rather than waiting for whole procedue completion.i had also tried to write this value to session and try to update these values from timer controlled updatepanel but it turned out that session are sent/set only when whole request is complete.
View 2 Replies
Jun 15, 2010
I want to retrieve values from a function at regular intervals and display it.I have two different fucntions 1 for getting values and 1 for display.I am using backgroundworker for that.
So when i put continous loop it goes into infinite loop without displaying data.The problem is with asp.net ..
What have i done is
public void backgroundWorker1_DoWork(object sender, System.ComponentModel.DoWorkEventArgs
e)
{
if (this.backgroundWorker1 == [code]...
Now until it doesnot come out of DoWork method if doenot display data eventhought it called Display_data() method.
I removed whilke(1=1) and checked that after exiting DoWork method it displays data.
So is there any way that after data binding in Display_Data() method i can display data and then refresh the whole process at backend ?
View 2 Replies
Mar 22, 2011
I have WCF method that opens and reads text file when I call it from WPF client, I do pass security credentials and it works fine, but when I try to put this method inside of BackgroundWorker I get Access to the path.
View 1 Replies
Apr 25, 2010
I have a simple user form registration with name, adress, etc and i need to send it by email. So i need, when somme one completes and fullfill the form, to receive a email, with the content of the registation.
View 6 Replies
Jun 26, 2010
how to remove master page prefix from control ID after rendering content page
i m using master page in my web application, i am using a java script that works on one of my div id and i am genrating div at run time using C# code, problem is that one one of my content page rendred a prefix ct100 attached on that div,
How can i remove that prefix from my server side control (assume panel) id
View 2 Replies
Jan 31, 2011
What is the cleanest way to display a web page inside another web page. Currently I am using an I-Frame. But are there any current controls in ASP.NET to do this efficiently?
[Code]....
View 1 Replies
Sep 12, 2010
I want to change some elements text when page is leaving the server (page_render, endRequest etc.).
How can i get access to the page and how can i find the elements to change their values, texts?
View 3 Replies
Nov 30, 2010
I have a aspx page which contains 6 user controls which will be displayed when the user clicks on any button using show model pop up extender. My page rendering takes more time. it taked 3 minuits to load the page. If i debug the page its traveling to page load of all the user controls. Its not taking more time to fetch the data from database but its taking time to load the page. Is there any way to improve the perfomace .Is there any place where i have to look into.I am using VS 2010 and c# .
View 2 Replies
Feb 22, 2011
I have an ASPX page that I intend to use as a template to generate some HTML. I have defined my markup and data bound controls and built a function to do all the data binding, call this.Render and return the HTML. The function works just fine when called from Page_Load.
My intent was to bypass page request and directly call the method and get the page HTML, but when I call the function without making a HTTP Request, none of my server side controls are initialized.
Is there any way I can call a method on a page, pass some params and get the HTML output without making a HTTP Request. I believe Server.Execute could do it but i cant find a way to pass params in it.
I am calling the function like this
MyPage ThreadHTMLGenerator = new MyPage;
string threadHTML= ThreadHTMLGenerator.GenerateExpandedHTML(param1, param2, param3);
View 2 Replies
Nov 24, 2010
What is the best way to build a progress page? In short, I want a user to complete a series of "setup steps" and hit a "Start" button. I would like them to be immediately redirected to a "Progress" page that will show them the progress of each step. In my case these would be: Shutdown device, copy file, Start device.
My approach so far is to build a Progress View page and use partial views. Here is what I have so far. I would like the Progress page to show up right away even if the ShutdownStatus View has not finished rendering. At some point, I plan on including a progress bar but right now I'm just curious as to how I can show the Progress page immediately then show each partial View as it completes.
[Code]....
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
View 8 Replies
Jul 20, 2010
I am using a table and within the table i have gridview and textbox controls. On the rowcommand i am populating the data in text boxes. On top of the table i am using updatepanel for partial page rendering. When i select a row from gridview the text boxes are not populating, the table disappears.Below is the code
[Code]....
View 3 Replies
Feb 17, 2011
I am trying to display reporting service elements in a web page as little 'widget' like elements, where when you click on one of the elements it takes you to the reporting services page that holds all of the data.
This works on my machine, and when run on two other machines, however, it is not working on the development server or another developer's machine.
It works in dev in Google chrome, but not in IE 7 or 8. The images/links work if you right click on them and select "open link", but they are not click-able as links, which pisses the business unit off.
I would really appreciate some help on this. Here is the information pertinent to what I am trying to do. URLs and such changed for obvious purposes.
.NET 3.5
= IIS 7
This is the ASPX element as added on the page.
<div style="width: 411px; float: left;">
<a href="RenderReport.aspx/myreport.pdf" style="text-decoration: none;">
<rsweb:ReportViewer ID="rptVwOriginatedFallout" runat="server" Font-Names="Verdana"
Font-Size="8pt" InteractiveDeviceInfos="(Collection)" ProcessingMode="Remote"
WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" ShowToolBar="False"
Height="260px" SizeToReportContent="True" BorderStyle="None">
<ServerReport ReportPath="/MyReport" ReportServerUrl="http://reportingserver/" />
</rsweb:ReportViewer>
</a>
</div>
At the top of the page I have:
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
In the web.config under assemblies I have:
<add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
Under the httpHandlers I have:
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
I have tried placing the appropriate information under and running it in Integrated mode as well on the server, but that did not work either.
View 1 Replies
Feb 4, 2010
I need to save some information about user (some kind of statististics) on post back. But saving takes time and I don't want user to wait for this process. User does't need to know about that saving process.I'm thinking of using ThreadPool or Threads. I want page to be rendered right after I put saving function to the threadPool, not after saving was done.
View 3 Replies
Aug 6, 2010
I know i could possibly just throw and exception and let the server handle the interruption but for personal knowledge and exploration, i would like to do it more than having the server automate it for me. I hav built a shared method that will take in information such as:
[Code]....
During the body, it just formats a series of information into a table and i would like to add the table to the page. Now i know you just simply do "Page.Controls.Add(Object)" to add the table to the page. Problem is that it adds it to the bottom of the page after rendering all the other content.
I would like for this method to interrupt the rendering process, clear out what has been built up and then output the table to the substitute the page pre-defined content.Very similar to what IIS spits out when it encounters and error and show the Exception name, message, and stack-trace. Although my exception is by no means that complicated.
View 3 Replies
Mar 9, 2011
I have an aspx web page that renders correctly. When converted to razor, it does not. Here is a simplified example (stripped of all extraneous stuff).
aspx:
<asp:Content ID="indexContent" ContentPlaceHolderID="ToolContent" runat="server">
<% string test = "<div><b>Tag Test</b></div>"; %>
<h2><%= test %></h2>
</asp:Content>
razor:
@section ToolContent {
@{ string test = "<div><b>Tag Test</b></div>"; }
<h2>@test</h2>
}
The aspx renders as expected. The razor just displays the content of "test" (<div><b>Tag Test</b></div>) in the header tag.
I assume that my understanding of razor is flawed. If someone could enlighten me and/or show me a solution/work around.
View 1 Replies
Jan 11, 2010
I am working with a pretty complicated .aspx page that is full of controls (Telerik, Ajax, etc.) that all expand, collapse, show, hide, etc. when the page is loaded. Since this rendering happens on the client-side and can take different lengths of time based on the users machine specs, is there a way to detect when all (or some) rendering has taken place (jQuery?) so I can then act on specific elements, knowing they are fully rendered?
View 5 Replies
Apr 1, 2011
for example:
[Code]....
I need both show the cshtml page,and persist it to a file for next visit.
first I found Response.OutputStream, but it was unreadable.
then I found in asp.net we could override Page's Render method to achieve it,but I don't know in webmatrix how to do it.
and in MVC we could use ActionFilter, but I really don't find how to achieve it in webmatrix.
View 4 Replies
Jan 15, 2010
I have several datalist controls inside a panel control.
When I do a databind on the "movie" datalist, data is populated. I can see during the debugging on the aspx page that it goes into the label controls and binds the data.
When I do a databind on the "alacarte" datalist, the data isn't populated even though before doing the databind I validate that there is a record inside the generic collection that I use for each separate type of datalist. When the databind occurs, it goes thru the alacarte datalist and does the databinding to the fields, but when the page renders, it doesn't produce any output inside this datalist.
The code behind below is the databinding for the movie datalist.
DataList grdMovies = ShoppingCart1.FindControl("grdMovies") as DataList;
grdMovies.DataSource = lstMovies;
grdMovies.DataBind();
The code behind below is the databinding for the alacarte datalist. I verified that there is a record inside the lstAlacarte collection with the same field names that are in the html for the alacarte section during the databinding.
DataList grdCartAlaCartePgming = ShoppingCart1.FindControl("grdCartAlacartePgming") as DataList;
grdCartAlaCartePgming.DataSource = lstAlacarte;
grdCartAlaCartePgming.DataBind();
Below is the html on the aspx page for the above controls. I included all of the html so as to see if there is anything I'm doing wrong. I even placed the words "desc" and "price" to see if that would render and it did not.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ShoppingCart.ascx.cs"
Inherits="DishRedesignClient.ShoppingCart" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>
<asp:Panel ID="pnlShoppingCart" runat="server" Height="400px" Width="300px"
[Code]....
View 5 Replies
Apr 27, 2016
below is .ashx file shows error on If context.Session("photo1") <> "" Then why? I need to display an image on button click that saved in database.
imgHandler.ashx:
Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
If context.Session("photo1") <> "" Then
Dim bytes() As Byte = DirectCast(context.Session("photo1"), [Byte]())
context.Response.Buffer = True
[code]...
on display page on button click:
Session("photo1") = HttpUtility.HtmlEncode(ds.Tables(0).Rows(0)("applicant_photo").ToString())
Image1.ImageUrl = "../imgHandler.ashx"
View 1 Replies
Jun 16, 2015
[URL] ....
I followed above link to create sample Crystal Report Project. Here is my code:
string conStr = ConfigurationManager.ConnectionStrings["MasterDb"].ConnectionString.ToString();
protected void Page_Load(object sender, EventArgs e) {
ReportDocument crystalReport = new ReportDocument();
crystalReport.Load(Server.MapPath("~/CrystalReport1.rpt"));
DataSet1 ds = GetData();
crystalReport.SetDataSource(ds);
[Code] ...
When I run my project, blank page renders. No Crystal report is displayed.
View 1 Replies