1
vote
0answers
33 views

ASP.NET WebMethod holding threadpool thread on long running SQL procedure

I have a reporting page which builds a report from a database table. The report is displayed in a tabular format. To handle user interactions I have built a JQuery table plugin which allows a user to ...
0
votes
1answer
62 views

Trying to spawn a new thread in ASP.NET; no errors, no thread

I am trying to spawn a new thread from an ASP page written in VB.NET, on .NET 3.5. The page allows a user to upload files and then processes the files into the database. As the processing can take a ...
0
votes
0answers
27 views

How to get the changes reflected when I call a function using Threading Asp.net

I am Threading to Call a function and assign values to a Textbox in Asp.net. When I debug it is showing value, but in the Form it is not getting reflected. Below is my code. Protected Sub ...
0
votes
0answers
23 views

stop saving untill user responds modal popup

How do I pause the process of saving untill a user has respond from a modal popup? I know that the ajax extender toolkit has a confirmation extender, but the problem is that this method is used for 2 ...
0
votes
1answer
30 views

W3WP memory and threads utilization every day at midnight

i have ASP.NET application (Microsoft "Stock Trader 5.0") installed on IIS 7.5 (Win 2008 R2) and i'm using in load application to load stress on the ASP.NET application. every morning when i check the ...
1
vote
1answer
63 views

Signalr - Associating usernames with connectionIds

Here is my hub: [HubName("marketWatch")] public class MarketWatchHub : Hub { public override Task OnConnected() { SocketCommunicator.Instance.UserConnected(Context.ConnectionId, ...
0
votes
1answer
42 views

Connection Timeout but Job still running

I have a IIS website going for internal job processing. the job will take about 10 mins. When the user click the button to start the job, after about a minute the whole page whipe white and showing ...
0
votes
2answers
87 views

How to get the result from Task.Factory.StartNew<>?

Please let me know if I can run more than one Task.Factory.StartNew statement in parallel. Some thing like this var task = Task.Factory.StartNew<List<AccessDetails>>(() => ...
0
votes
1answer
21 views

PageAsyncTask Update UI

I am learning about asynchronous operations in ASP .NET. I found an article here MSDN. The code works, but I want to be able to update the UI during the long process. It only shows the result after ...
2
votes
3answers
55 views

Efficient multiple tcp clients with intervals

I have been writing a command line program in C# that uses multiple tcp clients that all connect to the same server. Each client resides in it's own thread. At the moment I am trying to work out an ...
0
votes
2answers
86 views

How to call multiple different methods simultaneously

I have some different methods that each import products from different sites. If I execute these sequentially the entire process takes a lot of time, particularly when 1 method is running on a site ...
7
votes
3answers
109 views

can a method with return type as list be called from a thread

I have a method, shown below, which calls a service. How can I run this method through thread? public List<AccessDetails> GetAccessListOfMirror(string mirrorId,string server) { ...
0
votes
2answers
54 views

Can mutithreading be used to performance tune my app

In my application i open connection for about 70 servers each having 8 databases on average(the servers Are categorized into environments viz development, production, UaT, sit,training, misc,Qa ). The ...
0
votes
0answers
33 views

Multithreading ASP.Net

I am trying to implement multithreading in ASP .NET. Being a newb to multithreading, I started reading a little on it and learnt about background worker threads, which I was planning to use. I have ...
0
votes
0answers
59 views

How to start a thread in main method?

I am new to writing multi-threaded apps in asp.net. I have a main class that It suppose to send bulk email which take a long time. So, I use a thread in main method to show a template page to user ...
0
votes
2answers
63 views

Creating folder with a different name each time

I have an asp.net c# web application which creates a folder.The web application includes some buttons to change sth in this folder.The web application is hosted at 2008 server. Now I want to make it ...
0
votes
1answer
47 views

ASP.NET invoke event on worker thread, need to update UI element in handler

I'm currently writing a little background worker that invokes a "WorkerFinished" event when the thread is done executing. The problem is though, that I obviously cannot update any UI elements in the ...
0
votes
0answers
90 views

Getting “Thread was being aborted” error while uploading Excel in my ASP.net application

I am uploading An excel file in my application and reading data from it.Below is my Code.. Code: protected void btnBulkNext_Click(object sender, EventArgs e) { try { string filePath ...
4
votes
2answers
98 views

E-mail with no content when using the System.Threading.ThreadPool

I'm experiencing a strange behavior trying to send email using Threading.ThreadPool. This has worked for over a year now but recently it has stated to intermittently send emails with no content. The ...
-2
votes
1answer
63 views

calling static method on a new thread

Suppose I have a static method like so: public static string ProcessMessage() { string testString = " this is test "; .... return testString ; } and another method SendMessage: ...
0
votes
1answer
47 views

Asp.Net : executionTimeout + parallel thread

On a webpage, I launche a parallel process to do a long running task then send an email to keep track of its "output". But the thread sometimes seems to end before sending the email (the email is the ...
0
votes
2answers
86 views

How to pass parameter to asynchronous task in c#

During an ASP.NET web request I need to kick off an asynchronous task and then return control back to the web page. Can someone show me the code for calling the below method? Just to be clear, I ...
0
votes
1answer
71 views

Asynchronous Response in ASP.NET

I'm currently working on an e-commerce project and I need some help with my payment page. At the checkout page, I get the users' payment info which is a GSM number only, I post it to the payment ...
-6
votes
1answer
242 views

C# Asp.net call a method every x minutes [closed]

What is the best way to call a function every x minutes in asp.net with c# ? The goal is: To make a small site that displays the content of a file (same file to all visitors). The content of the ...
-5
votes
2answers
108 views

C# asp.net threading timer file writer not working [closed]

I'm trying to have a function that runs every minute on the server and updates a txt file.. My code in Global.asax is something like this: Timer t = new Timer(UpdateFile); t.Change(0, 1000 * ...
0
votes
3answers
216 views

C# Multithreading ASP .NET MVC 4 - Equivalent of System.Windows.Threading.Dispatcher?

I study .NET and now i'm learning web developement with ASP .NET MVC 4. I made a Task : Task t = new Task(new Action(() => { while (convert("suitandtie.mp4") != 1) ...
0
votes
1answer
76 views

Handle thread abort exception in threads…?

Child thread is waiting for response from webserver, and is having a timeout value too. If timeout value comes first before getting response from web server, it will proceed to request timeout and ...
1
vote
1answer
30 views

How to show popup in 1 thread?

I have a .NET LinkButton event which takes a lot of time(thousands of Database operations). I try to avoid users from clicking somewhere else until my event is finished. So I open a modal popup for ...
1
vote
1answer
88 views

Availability of threads in a thread pool?

How to find 60%(Or N%) availability of threads from a thread pool? What is the logic behind this? Parent thread spawning multiple urls using thread pool threads and waiting for the completion of all ...
3
votes
1answer
89 views

Correct use of a ConcurrentQueue within a HttpModule?

I am attempting to add a speed boost to a HttpModule that processes images using asynchronous programming. Whilst it certainly appears that I am getting a performance improvement I'd like to check ...
0
votes
0answers
102 views

ASP.net Stopping long running sql query

I have a select operation in my web application which takes considerably large amount of time. I would like to implement a cancel function triggers with a cancel button click, When it is fetching a ...
1
vote
1answer
84 views

How to integrate the ASP.NET thread model and ZeroMQ sockets?

I'm building an ASP.NET service (a simple aspx) that requires a REQ call to a ZeroMQ REP node. So I've to use the REQ/REP pattern, but I can't figure out the proper way to initialize the ZeroMQ ...
1
vote
0answers
24 views

Tasks spawned from a request thread accessing a common store

I'm working on some code which could be thought of as a message bus. Everything has been working fine until I started playing around with Tasks. In my particular implementation, as I am in a web ...
0
votes
3answers
61 views

Upload image on background, with Thread

i have a upload form in my web site, that allow the users to insert some items(usually trees), and they have the option to upload images after they added this items. to upload image its take something ...
1
vote
1answer
449 views

ASP.NET Response.Redirect() doesn't work without try/catch

I have a trouble, which I didn't get earlier with the ASP.NET. I can't redirect to the some location with the method Response.Redirect() I've read another topics and may tell you, what exactly I have ...
3
votes
3answers
209 views

Update panel from a server side thread

I am trying to develop a chat using aspx. I already got it working with asmx + winform but now I have problems with asmx + aspx. Basically what I want to do is call the WebMethod CheckForMessages ...
0
votes
0answers
53 views

Sending asynchronous batches to DynamoDb from .NET on a background thread

I need to write a lot of activity data from My ASP.net web app to AWS DynamoDb (or Azure Table Storage). My web threads don't need to wait for a response so I'd like to queue the db inserts. I'm ...
1
vote
2answers
123 views

how to put my thread(user defined thread) in sleep mode in C#?

I have created one thread in C#. Now I want to put the thread that I created into some specific amount of time. And then I want to start my thread. My target is, I want to invoke my updateMark ...
1
vote
1answer
49 views

uploading videos though asp.net application

I have to upload video on a server though my application. So, i want to create application in such way that it can upload multipe videos at a time. So, for that i can create separate threads like ...
0
votes
2answers
56 views

ASP.net threading for mathematical simulation [closed]

I have to do math based simulator website. So we are using asp.net for the project and I'm in a big trouble because threads are not support for the asp.net. Is that true? we search so many threads in ...
0
votes
3answers
51 views

Running class in the background

I have a win form that starts a mini server type thing to serve web pages to the local browser, now the problem is, is that when I start it the application obviously won't run because there is a loop ...
5
votes
3answers
254 views

Does ASP.NET continue reliably processing a request even after a user is navigated away via javascript?

Environment: Windows Server 2003 - IIS 6.x ASP.NET 3.5 (C#) IE 7,8,9 FF (whatever the latest 10 versions are) User Scenario: User enters search criteria against large data-set. After initiating ...
1
vote
3answers
74 views

Lock is being skipped

I have the following code which does some database work: [WebMethod] public void FastBulkAdd(int addmax){ Users[] uploaders = db.Users.Take(addmax).ToArray(); Parallel.ForEach(uploaders, item => ...
1
vote
0answers
113 views

Use same session object in multithread request without session lock

In an asp.net web application (mvc 3,.net 4.0) we are developing, we have some troubles with object on session when we use it in async operation. (It uses Async Targeting Pack library). ASP.NET ...
0
votes
0answers
60 views

Is the value added to HttpContext.Current.Cache available to other concurrent threads

On my web application I need to avoid unnecessary calls to external system. It’s OK to call out once every 10~20 seconds per session. There might be multiple requests/threads happening concurrently ...
0
votes
1answer
61 views

spin the task up in a separate process outside of IIS

In this answer How should I perform a long-running task in ASP.NET 4? they recommend spinning the task up in a separate process outside of IIS. Is this possible? So in my asp.net application can I ...
0
votes
0answers
116 views

How to bind data to gridview while using thread

I have a website. It gets the data using threads, say 4 threads. After receiving output from one thread I have to bind it in gridview, then after completion of second thread both the output of 1 + 2 ...
0
votes
1answer
106 views

Saving audit data to database asynchronously in asp.net webforms application

I have an asp.net 3.5 web application which generates alot of audit related data. Since that data isn't immediately relevant to the user, I'd like to be able to save it to the MSSQL database ...
0
votes
0answers
23 views

ASP.NET Thread Execution

I have an ASP.NET application which allow users to upload files which will later be moved to AWS S3. Everything works alright if the file is uploaded and moved to S3 on a single request. But the ...
0
votes
1answer
60 views

Cannot propagate AspNetSynchronizationContext to TPL task

I've read a number of articles that in order to preserve HttpContext.Current in versions prior to 4.5, we should pass on handling thread's SynchornizationContext. Here is a code I am attempting to ...

1 2 3 4 5 13