Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 292775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:12:40+00:00 2026-05-12T06:12:40+00:00

I have a web form that once filled out needs to kick off a

  • 0

I have a web form that once filled out needs to kick off a lengthy process. Since I don’t want the user sitting there waiting for it to complete, I want to kick off the task and then take the user to another page to continue working.

Would doing this involve using an asynchronus process, and if so, does someone have an example of how to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T06:12:41+00:00Added an answer on May 12, 2026 at 6:12 am

    Basically you need a fire-n-forget implementation where you can just fire an async operation without waiting for it to finish.

    Check out the following answer on a related question.

    The code is in C#.Net, but vb.net should be similar.

    Edit: Vb.net Solution:

    This is the vb.net solution to fire a web method asynchronously:

    Consider your web method as follows:

    Public Class Service1
        Inherits System.Web.Services.WebService
    
        <WebMethod()> _
        Public Sub LengthyProcess()
            'Perform the lengthy operation
            'Also note this doesn't return anything
            'Hence can be used safely in fire-n-forget way of asynchronous delegate
            System.Threading.Thread.Sleep(1000)
            System.IO.File.WriteAllText("C:\\MyFile.txt", "This is the content to write!", Encoding.UTF8)
            System.Threading.Thread.Sleep(1000)
        End Sub
    
    End Class
    

    Now to call the web method asynchronously you can do either of the following depending your version of .Net:

    .Net 3.5 (I am not sure if it works in 2.0)

    Make sure to set Async=”true” in your Page directive

    <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication1._Default" Async="true" %>
    

    And in the code behind:

    Partial Public Class _Default
        Inherits System.Web.UI.Page
    
        Dim webService As MyService.Service1
    
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        End Sub
    
        Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
            webService = New MyService.Service1()
            webService.LengthyProcessAsync()
        End Sub
    
    End Class
    

    .Net 2.0/ 1.0

    No need to set Async=”true”

    And in the code-behind:

    Partial Public Class _Default
        Inherits System.Web.UI.Page
    
        Public Delegate Sub MyDelegateCallBack()
        Dim webService As MyService.Service1
    
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        End Sub
    
        Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click
            webService = New MyService.Service1()
            Dim del As MyDelegateCallBack
            del = New MyDelegateCallBack(AddressOf webService.LengthyProcess)
            del.BeginInvoke(Nothing, Nothing)
        End Sub
    End Class
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say you have a web form with some fields that you want to validate
I have a web form that binds a DataGrid to a, normally, different data
I have a web form that has multiple ListBoxes, TextBoxes, DropDowns. If I put
I have a web form that I am attempting to implement dynamic drop down
I have a checkbox list control on my asp.net web form that I am
We have a web application that is based around a form that gets passed
I have a web report that uses a Django form (new forms) for fields
Using web forms I know that you can only have one ASP.NET form on
I have to interact with a set of web-services that each come with their
I have a simple webform that will allow unauthenticated users to input their information,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.