473,769 Members | 3,857 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Auto Push

Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data to the
client ?

Thanks

Arun Gandhi
Nov 17 '05 #1
5 6095
Hi,

I think this is not so much a question about ASP.NET but about the HTTP
protocoll and browsers. To my knowledge there is currently no real push
technology. What you can do independent of ASP.NET is that you can use
XMLHTTP as an object inside IE 5.x or higher to do call backs to the server.
Or you could use an invisible IFRAME that you keep refreshing every now and
then. Then the server could 'push' data to the client by answering the
continous request.

Best regards,

Marc Höppner
NeoGeo

"Arun Gandhi" <ar********@hot mail.com> wrote in message
news:eT******** ******@tk2msftn gp13.phx.gbl...
Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data to the client ?

Thanks

Arun Gandhi

Nov 17 '05 #2
no

"Arun Gandhi" <ar********@hot mail.com> wrote in message
news:eT******** ******@tk2msftn gp13.phx.gbl...
Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data to the client ?

Thanks

Arun Gandhi

Nov 17 '05 #3
No, this is not possible.
With HTTP, a request MUST initiate from the client.
Therefore about the best you could do is have a timer on a web page that,
every x seconds, requests a "push" of data if one is available. Of course
this eats a lot more bandwidth but it's your only hope without switching to
a client that is more sophisticated than a web browser.

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Arun Gandhi" <ar********@hot mail.com> wrote in message
news:eT******** ******@tk2msftn gp13.phx.gbl...
Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data to the client ?

Thanks

Arun Gandhi

Nov 17 '05 #4
Hmm. I'm interested....W hat kind of client would enable this? Wouldn't you
have to have some sort of "bound" connection via tcp/ip? How would you
approach this?

I'm curious to know of examples of how this would be done....

Cheers!

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message
news:Oe******** ******@TK2MSFTN GP12.phx.gbl...
No, this is not possible.
With HTTP, a request MUST initiate from the client.
Therefore about the best you could do is have a timer on a web page that,
every x seconds, requests a "push" of data if one is available. Of course
this eats a lot more bandwidth but it's your only hope without switching to a client that is more sophisticated than a web browser.

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Arun Gandhi" <ar********@hot mail.com> wrote in message
news:eT******** ******@tk2msftn gp13.phx.gbl...
Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data to

the
client ?

Thanks

Arun Gandhi


Nov 17 '05 #5
Yes, tcp would be the most likely choice.
Here's more info:
http://msdn.microsoft.com/library/de...classtopic.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Null" <fa**********@h otmail.com> wrote in message
news:uW******** ******@TK2MSFTN GP10.phx.gbl...
Hmm. I'm interested....W hat kind of client would enable this? Wouldn't you have to have some sort of "bound" connection via tcp/ip? How would you
approach this?

I'm curious to know of examples of how this would be done....

Cheers!

"Steve C. Orr, MCSD" <St***@Orr.ne t> wrote in message
news:Oe******** ******@TK2MSFTN GP12.phx.gbl...
No, this is not possible.
With HTTP, a request MUST initiate from the client.
Therefore about the best you could do is have a timer on a web page that, every x seconds, requests a "push" of data if one is available. Of course this eats a lot more bandwidth but it's your only hope without switching

to
a client that is more sophisticated than a web browser.

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net

"Arun Gandhi" <ar********@hot mail.com> wrote in message
news:eT******** ******@tk2msftn gp13.phx.gbl...
Hi Everyone,

IS it possible in ASP.NET that Server should automatically push data
to the
client ?

Thanks

Arun Gandhi



Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
23206
by: Will | last post by:
Hi, Sorry to be a pest... But I can figure this out. I'm pushing to a stack. then I need to check to see if the word is a palindrome. Is the code below correct? if so, how can I check the entire word?
3
2570
by: david | last post by:
HI! Im trying to make "HTML form" into automatic. 1. If I get 18 numbers like: A B C D E F . . . . 2. How can I put those 18 numbers automatically into 6 numbers format like: A B C D E F
1
2388
by: marko | last post by:
Here is my problem. How can i make a field in a form change to a value 1 every morning when I turn access on, when the date changes? And how can i make a button on a form which would open another form and increase the value of one field by 1. The first value of that field would be 1(from the morning and increasing through the day) and it would fill in automatically from the last record and then i would push that button. It would increase...
17
9982
by: Dino M. Buljubasic | last post by:
I am building an applicatin that will be able to automatically update itself from an FTP server. I'd like to be able to determine which version of application is newer, the one currently running or the one found on the FTP server (the .msi file). My idea is to look at the FTP server for an .msi file and compare its date with the date stamp of the application currently running and then download the release only if it is newer then running...
1
2504
by: AA Arens | last post by:
I have a button containing the VB command Me.Notes = Me.Notes & Format(Date, "dd-mm-yyyy") to have a date filled in a field. I want it automatically jump to the next field, after the date is inserted. How? By the way, more nicer is that when I start a new record, the date is automatically inserted and the cursor jumps to the next field. So, without a push button.
15
3803
by: Bill Pursell | last post by:
The faq (question 1.12) states that the keyword "auto" is completely useless. However, it is necessary to forward declare a nested function (for gcc...I'm not sure if this is gcc specific or a language issue.) In other words: int main(void) { AUTO int foo(void);
4
13468
by: Drum2001 | last post by:
I have a combobox that is populated from a button on the form. One pushes this button and the following happens: !! = Me.ItemName So the combobox no shows whatever was in Me.ItemName. Here is my question... How do I autoselect this item? I know the following code will select
0
1389
by: baldrex | last post by:
hello again, I have already gotten to the pdf file, however it hangs at the save as screen. What I am looking for is a snipet of code that will allow me to print to the pdf and auto save it to file with the default name and either not actually open Adobe or to have it close adobe after it auto saves the file a point in the right direction would be of great help!! basically looking for a code snipet that will push the save button for...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10214
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10048
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9996
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9865
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6674
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3963
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3563
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.