Ask a Question related to ASP.NET General, Design and Development.
-
Kevin Spencer #1
Re: Calling a .NET Assembly from an ASP.NET page
Do yoou mean that it calls a method of a class in an assembly? You may want
to make the method call run in a separate thread.
See the following MSDN article for an example:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cssample/html/vcsamthreadingsample.asp[/url]
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Complex things are made up of
lots of simple things.
"Eric Levin" <eric@soundsite.com> wrote in message
news:%23YwtuCyWDHA.2268@TK2MSFTNGP11.phx.gbl...about> I have an ASP.NET page that is passes parameters to an Assembly, and then
> executes a procedure.
> This basically works, but the only problem is that this assembly takeswill> 15 minutes to run.
>
> What I want is to have the ASP.NET get the control back as soon as the
> assembly begins executing.
> Basically have the assembly run in the background, and when finished it> self terminate (Calling application doesn't have to know about it).
>
> Any information or links on how to do this would be greatly appreciated.
>
> Thanks,
>
> Eric Levin
> Sounddogs.com
>
>
Kevin Spencer Guest
-
Security Error When calling assembly.CreateInstance
I don't event know where to begin to solve it. I tried everything I could find on the net, with no avail. I ma loading an assembly using http. Here... -
How Do I get ConfigurationSettings from the calling assembly?
I'm developing a server control for our intranet. This control is only going to be used in two applications on the server, but they must be... -
referencing assembly from aspx page
Earlier, I created an assembly that wrapped the SQLDMO.dll Com object. The assembly is now called Interop.SQLDMO.dll Now, from a seperate... -
Calling .NET Assembly from JavaScript...
I have a requirement to call .NET assembly (Custom component) from thin client Page (ASPX). This Assembly talks only TCP/IP with an external server... -
Calling a html page from an asp page then returning to the next statement on the original asp page
Hi! I have an ASP page that calls excel to create a report. This works fine. Now I need to call a html calendar page to filter what rows are... -
Jeffrey Huntsman #2
Re: Calling a .NET Assembly from an ASP.NET page
Lookup asynchronous programming in the help for .NET Framework. There are
some examples, but you basically need to use BeginInvoke and provide a
callback so that your assembly method acts asynchronously.
Jeff H.
"Eric Levin" <eric@soundsite.com> wrote in message
news:%23YwtuCyWDHA.2268@TK2MSFTNGP11.phx.gbl...about> I have an ASP.NET page that is passes parameters to an Assembly, and then
> executes a procedure.
> This basically works, but the only problem is that this assembly takeswill> 15 minutes to run.
>
> What I want is to have the ASP.NET get the control back as soon as the
> assembly begins executing.
> Basically have the assembly run in the background, and when finished it> self terminate (Calling application doesn't have to know about it).
>
> Any information or links on how to do this would be greatly appreciated.
>
> Thanks,
>
> Eric Levin
> Sounddogs.com
>
>
Jeffrey Huntsman Guest



Reply With Quote

