Showing posts with label experts. Show all posts
Showing posts with label experts. Show all posts

Wednesday, March 28, 2012

thin client using ASP.net

Hello experts,

i read about thin client using Facado (http://www.nexusedge.com/products/products-facado-faq.htm) which is a rich, thin, Java J2EE solution... instead of "click n refresh" HTML, it works like a client-server application. so, the only data that goes back n forth between client n server are relevant data objects...

BUT i also read somewhere (maybe in msdn) under the topic "Application Design Guidelines: From N-Tier to .NET" that says...... "ASP.net Web controls allow building reusable browser GUI elements"...

so i just want to know...
- are these 2 description are similar one thing, that is a rich, thin, client.
- for the 2nd paragraph (.net) is it using the CLICKONCE deployment in visual studio?
- for .net, is there any online example of this type of application (thin client) that i can look for?

thank you very much!I am not an expert but a newbie, too.
However, if not misunderstood by me, you can use Javascript in your pages to do almost all the things that may run on clients.
yes. i'm currently using javascript

but i want to know about thin client like / similar to Facado.. is there any examples that i can try?
Hi,

my guess is that you mean "smart clients" and clickonce is, for as far as I know currently, a new feature in the .NET 2.0 framework that's shipping in 2005.

Smart clients could be winforms that are automatically updated but they can also be winforms controls that are embedded in your asp.net pages.

asp.net web controls provide a lot of things but they don't act like java applets like Facado (I only took a fast glimpse at it).

A link that give you a first impression of what I mean:Host Secure, Lightweight Client-Side Controls in Microsoft Internet Explorer.

Grz, Kris.

Thursday, March 22, 2012

Thread

Hai Experts,
I have one aspx Page that updates lots of data to Active
Directory.This Part is done, But i need to display the status of
updation(That is How Many Entries are updated) for certain Period of time
and how many entries are pending to update. Is it possible through Threads,
can anyone please suggest me what to do.

Thanks,
Rajeev.I have done something similar, but it involved upload status instead. But,
I believe the concepts are similar. You want to display % complete, right?
It involved using an IFRAME (this showed the % complete). The main page
continued to process while the page in the IFRAME refreshed every couple of
seconds to determine what the status was.

I built an object that processed the upload and provided a % complete. The
page displaying the status complete interrogated that object for its status
while the other page did the work. I used threading and chunking (for the
upload) in this solution. I believe you could do something similar.

Sincerely,
John Swanagon
Sr. Software Engineer, Avaya Labs
Avaya Inc.
jmswanagon@.avaya.com
"RajeevSekar" <RajeevSekar@.force10networks.comwrote in message
news:uib3CF%23rGHA.4032@.TK2MSFTNGP03.phx.gbl...

Quote:

Originally Posted by

Hai Experts,
I have one aspx Page that updates lots of data to Active
Directory.This Part is done, But i need to display the status of
updation(That is How Many Entries are updated) for certain Period of time
and how many entries are pending to update. Is it possible through
Threads, can anyone please suggest me what to do.
>
Thanks,
Rajeev.
>