473,322 Members | 1,566 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Can server initiate update of client pages ?

Hi,
I am a newby in ASP.NET, and till now wrote only simple "classic" WEB-sites.

But - the time came, and now I need that:

1. Server will "listen" for some events on its local machine
2. According to event received (say - event ID), it will update client pages, that need updating based on this ID (if currently there exist clients that are interesting in specific ID).

The good example of such site - airport flight information, when client selects some specific flight(s), and want to see automatic updates of displayed information withOUT pushing on "UPDATE" button (or timer at client side that sends update requests).

My questions are:

1. What ASP.NET mechanism can I use to implement above thing ?
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?
3. Can it be seen from UNIX-based browser ?

Thanks,

Zvi
Nov 18 '05 #1
17 2701
the clientside controls, like the textbox, will have to "AutoPostBack" and make another trip to the server to get the requested information.

ASP.NET can not natively be run on a *nix server. There are some "workarounds" if you search this group but it's not really recommended.

The browser SHOULD be irrelevant but most ASP.NET sites require that javascript be supported on the client's browser.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hi,
I am a newby in ASP.NET, and till now wrote only simple "classic" WEB-sites.

But - the time came, and now I need that:

1. Server will "listen" for some events on its local machine
2. According to event received (say - event ID), it will update client pages, that need updating based on this ID (if currently there exist clients that are interesting in specific ID).

The good example of such site - airport flight information, when client selects some specific flight(s), and want to see automatic updates of displayed information withOUT pushing on "UPDATE" button (or timer at client side that sends update requests).

My questions are:

1. What ASP.NET mechanism can I use to implement above thing ?
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?
3. Can it be seen from UNIX-based browser ?

Thanks,

Zvi
Nov 18 '05 #2
Dear Curt,

As I see the description of AutoPostBack property -
Use the AutoPostBack property to specify whether an automatic postback to the server will occur whenever the user modifies the text in the TextBox control and then tabs out of the control. Note Postback only occurs when the text box loses focus after the contents are changed.
- it causes update when the control loses focus. But, to my opinion, this is NOT what I want !

Let me ask once more, what I need:

1. User selects ID of update type - (say, flight number) - and sends (submits) it to server. The server saves all submitted IDs and can identify them with clients (may be, by IP address ?).
2. User moves the browser window to the screen corner, and works with other applications.
3. Server has general message loop (is it possible ?), and when it receives message with specific ID, it checks, if there are clients, that are interesting with this ID. If such clients are found, server updates their pages. It can occur many times for the same client - so, the user will see the window that is updated many time by itself.

Is above processing possible ?

Thanks,

Zvi

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:O4**************@tk2msftngp13.phx.gbl...
the clientside controls, like the textbox, will have to "AutoPostBack" and make another trip to the server to get the requested information.

ASP.NET can not natively be run on a *nix server. There are some "workarounds" if you search this group but it's not really recommended.

The browser SHOULD be irrelevant but most ASP.NET sites require that javascript be supported on the client's browser.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hi,
I am a newby in ASP.NET, and till now wrote only simple "classic" WEB-sites.

But - the time came, and now I need that:

1. Server will "listen" for some events on its local machine
2. According to event received (say - event ID), it will update client pages, that need updating based on this ID (if currently there exist clients that are interesting in specific ID).

The good example of such site - airport flight information, when client selects some specific flight(s), and want to see automatic updates of displayed information withOUT pushing on "UPDATE" button (or timer at client side that sends update requests).

My questions are:

1. What ASP.NET mechanism can I use to implement above thing ?
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?
3. Can it be seen from UNIX-based browser ?

Thanks,

Zvi
Nov 18 '05 #3
>1. What ASP.NET mechanism can I use to implement above thing ?

Place the following in your page's HTML header:
<META HTTP-EQUIV="REFRESH" CONTENT="5">

It will force the page to refresh itself every 5 seconds.
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?

The above will work in any web server because it is raw HTML. However,
ASP.NET is designed to run only on the Windows platform.
3. Can it be seen from UNIX-based browser ?


The browser is irrelevant.
Nov 18 '05 #4
Zvi,

You can get the browser to refresh the page periodically. You can't get the the server to initiate refresh.

Eliyahu
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:O0****************@TK2MSFTNGP09.phx.gbl...
Dear Curt,

As I see the description of AutoPostBack property -
Use the AutoPostBack property to specify whether an automatic postback to the server will occur whenever the user modifies the text in the TextBox control and then tabs out of the control. Note Postback only occurs when the text box loses focus after the contents are changed.
- it causes update when the control loses focus. But, to my opinion, this is NOT what I want !

Let me ask once more, what I need:

1. User selects ID of update type - (say, flight number) - and sends (submits) it to server. The server saves all submitted IDs and can identify them with clients (may be, by IP address ?).
2. User moves the browser window to the screen corner, and works with other applications.
3. Server has general message loop (is it possible ?), and when it receives message with specific ID, it checks, if there are clients, that are interesting with this ID. If such clients are found, server updates their pages. It can occur many times for the same client - so, the user will see the window that is updated many time by itself.

Is above processing possible ?

Thanks,

Zvi

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:O4**************@tk2msftngp13.phx.gbl...
the clientside controls, like the textbox, will have to "AutoPostBack" and make another trip to the server to get the requested information.

ASP.NET can not natively be run on a *nix server. There are some "workarounds" if you search this group but it's not really recommended.

The browser SHOULD be irrelevant but most ASP.NET sites require that javascript be supported on the client's browser.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hi,
I am a newby in ASP.NET, and till now wrote only simple "classic" WEB-sites.

But - the time came, and now I need that:

1. Server will "listen" for some events on its local machine
2. According to event received (say - event ID), it will update client pages, that need updating based on this ID (if currently there exist clients that are interesting in specific ID).

The good example of such site - airport flight information, when client selects some specific flight(s), and want to see automatic updates of displayed information withOUT pushing on "UPDATE" button (or timer at client side that sends update requests).

My questions are:

1. What ASP.NET mechanism can I use to implement above thing ?
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?
3. Can it be seen from UNIX-based browser ?

Thanks,

Zvi
Nov 18 '05 #5
Mark, hi,

Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
1. What ASP.NET mechanism can I use to implement above thing ?


Place the following in your page's HTML header:
<META HTTP-EQUIV="REFRESH" CONTENT="5">

It will force the page to refresh itself every 5 seconds.
2. If this is possible, can such WEB-site be published on UNIX-based

Internet Server ?

The above will work in any web server because it is raw HTML. However,
ASP.NET is designed to run only on the Windows platform.
3. Can it be seen from UNIX-based browser ?


The browser is irrelevant.

Nov 18 '05 #6
Eliyahu, hi,

See, please my queston to Mark Rae in this thread.
"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message news:uU**************@TK2MSFTNGP09.phx.gbl...
Zvi,

You can get the browser to refresh the page periodically. You can't get the the server to initiate refresh.

Eliyahu
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:O0****************@TK2MSFTNGP09.phx.gbl...
Dear Curt,

As I see the description of AutoPostBack property -
Use the AutoPostBack property to specify whether an automatic postback to the server will occur whenever the user modifies the text in the TextBox control and then tabs out of the control. Note Postback only occurs when the text box loses focus after the contents are changed.
- it causes update when the control loses focus. But, to my opinion, this is NOT what I want !

Let me ask once more, what I need:

1. User selects ID of update type - (say, flight number) - and sends (submits) it to server. The server saves all submitted IDs and can identify them with clients (may be, by IP address ?).
2. User moves the browser window to the screen corner, and works with other applications.
3. Server has general message loop (is it possible ?), and when it receives message with specific ID, it checks, if there are clients, that are interesting with this ID. If such clients are found, server updates their pages. It can occur many times for the same client - so, the user will see the window that is updated many time by itself.

Is above processing possible ?

Thanks,

Zvi

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message news:O4**************@tk2msftngp13.phx.gbl...
the clientside controls, like the textbox, will have to "AutoPostBack" and make another trip to the server to get the requested information.

ASP.NET can not natively be run on a *nix server. There are some "workarounds" if you search this group but it's not really recommended.

The browser SHOULD be irrelevant but most ASP.NET sites require that javascript be supported on the client's browser.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Zvi Danovich" <zv*@cmt.co.il> wrote in message news:%2****************@tk2msftngp13.phx.gbl...
Hi,
I am a newby in ASP.NET, and till now wrote only simple "classic" WEB-sites.

But - the time came, and now I need that:

1. Server will "listen" for some events on its local machine
2. According to event received (say - event ID), it will update client pages, that need updating based on this ID (if currently there exist clients that are interesting in specific ID).

The good example of such site - airport flight information, when client selects some specific flight(s), and want to see automatic updates of displayed information withOUT pushing on "UPDATE" button (or timer at client side that sends update requests).

My questions are:

1. What ASP.NET mechanism can I use to implement above thing ?
2. If this is possible, can such WEB-site be published on UNIX-based Internet Server ?
3. Can it be seen from UNIX-based browser ?

Thanks,

Zvi
Nov 18 '05 #7
"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?


AFAIK - see also Eliyahu's response...
Nov 18 '05 #8
Well, that what web servers are all about - to serve client's requests.
Other way around, keeping clients sessions contradicts scalability. Can I
ask who doesn't recommend polling?

Eliyahu

"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Mark, hi,

Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
1. What ASP.NET mechanism can I use to implement above thing ?


Place the following in your page's HTML header:
<META HTTP-EQUIV="REFRESH" CONTENT="5">

It will force the page to refresh itself every 5 seconds.
2. If this is possible, can such WEB-site be published on UNIX-based

Internet Server ?

The above will work in any web server because it is raw HTML. However,
ASP.NET is designed to run only on the Windows platform.
3. Can it be seen from UNIX-based browser ?


The browser is irrelevant.


Nov 18 '05 #9
Eliyahu, hi,

Let's think in a very simple way: if I want to update client page not late
than 5 sec after change, I must poll each 5 sec. If server receives one
change event in 1 min, it means, that polling will cause more than 10
requests during the time of one possible update in "server=>client"
direction. To my opinion, it is obvious, what can be recommended.

And if we continue our discussion, explain me, please: if I know IP address
of client (and I can identify it !) - are you sure that server cannot update
the client using this address ? It seems to be very strange ...

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:OG**************@TK2MSFTNGP11.phx.gbl...
Well, that what web servers are all about - to serve client's requests.
Other way around, keeping clients sessions contradicts scalability. Can I
ask who doesn't recommend polling?

Eliyahu

"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Mark, hi,

Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
>1. What ASP.NET mechanism can I use to implement above thing ?

Place the following in your page's HTML header:
<META HTTP-EQUIV="REFRESH" CONTENT="5">

It will force the page to refresh itself every 5 seconds.

>2. If this is possible, can such WEB-site be published on UNIX-based
Internet Server ?

The above will work in any web server because it is raw HTML. However,
ASP.NET is designed to run only on the Windows platform.

>3. Can it be seen from UNIX-based browser ?

The browser is irrelevant.



Nov 18 '05 #10
Zvi,

Again, the server is made and optimized specially for this sort of
tasks.Your arithmetic is not good here since the server and the client are
not equal parties. One is made to be a server, and another is made to be a
client.

IP address of the sender is not enough to initiate reverse communication,
even you don't mind writing your own software that will try doing this.
Consider a typical case when a user is on the corporal Intranet and his
machine doesn't have any external IP address. Also consider all variety of
security settings, firewalls.

Eliyahu

"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:ud**************@TK2MSFTNGP09.phx.gbl...
Eliyahu, hi,

Let's think in a very simple way: if I want to update client page not late
than 5 sec after change, I must poll each 5 sec. If server receives one
change event in 1 min, it means, that polling will cause more than 10
requests during the time of one possible update in "server=>client"
direction. To my opinion, it is obvious, what can be recommended.

And if we continue our discussion, explain me, please: if I know IP address of client (and I can identify it !) - are you sure that server cannot update the client using this address ? It seems to be very strange ...

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:OG**************@TK2MSFTNGP11.phx.gbl...
Well, that what web servers are all about - to serve client's requests.
Other way around, keeping clients sessions contradicts scalability. Can I ask who doesn't recommend polling?

Eliyahu

"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Mark, hi,

Your answer means - polling. But polling increases system loading and is highly NOT recommended. Are you sure that polling is the only solution ?
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
> >1. What ASP.NET mechanism can I use to implement above thing ?
>
> Place the following in your page's HTML header:
> <META HTTP-EQUIV="REFRESH" CONTENT="5">
>
> It will force the page to refresh itself every 5 seconds.
>
> >2. If this is possible, can such WEB-site be published on UNIX-based > Internet Server ?
>
> The above will work in any web server because it is raw HTML. However, > ASP.NET is designed to run only on the Windows platform.
>
> >3. Can it be seen from UNIX-based browser ?
>
> The browser is irrelevant.
>
>



Nov 18 '05 #11
You are after PUSH technology, Web is a Request/Response system.
Wrong technology for what you are after.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:ud**************@TK2MSFTNGP09.phx.gbl...
Eliyahu, hi,

Let's think in a very simple way: if I want to update client page not late
than 5 sec after change, I must poll each 5 sec. If server receives one
change event in 1 min, it means, that polling will cause more than 10
requests during the time of one possible update in "server=>client"
direction. To my opinion, it is obvious, what can be recommended.

And if we continue our discussion, explain me, please: if I know IP address of client (and I can identify it !) - are you sure that server cannot update the client using this address ? It seems to be very strange ...

"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:OG**************@TK2MSFTNGP11.phx.gbl...
Well, that what web servers are all about - to serve client's requests.
Other way around, keeping clients sessions contradicts scalability. Can I ask who doesn't recommend polling?

Eliyahu

"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Mark, hi,

Your answer means - polling. But polling increases system loading and is highly NOT recommended. Are you sure that polling is the only solution ?
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:Oh**************@TK2MSFTNGP10.phx.gbl...
> >1. What ASP.NET mechanism can I use to implement above thing ?
>
> Place the following in your page's HTML header:
> <META HTTP-EQUIV="REFRESH" CONTENT="5">
>
> It will force the page to refresh itself every 5 seconds.
>
> >2. If this is possible, can such WEB-site be published on UNIX-based > Internet Server ?
>
> The above will work in any web server because it is raw HTML. However, > ASP.NET is designed to run only on the Windows platform.
>
> >3. Can it be seen from UNIX-based browser ?
>
> The browser is irrelevant.
>
>



Nov 18 '05 #12
"Zvi Danovich" <zv*@cmt.co.il> wrote in news:#jjKspWeEHA.3916
@TK2MSFTNGP11.phx.gbl:
Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?


Build an applet - either with Java or Winforms hosted in IE.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 18 '05 #13
"Zvi Danovich" <zv*@cmt.co.il> wrote in
news:ud**************@TK2MSFTNGP09.phx.gbl:
And if we continue our discussion, explain me, please: if I know IP
address of client (and I can identify it !) - are you sure that server
cannot update the client using this address ? It seems to be very
strange ...


You're not a web developer are you.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 18 '05 #14
"Zvi Danovich" <zv*@cmt.co.il> wrote in message
news:ud**************@TK2MSFTNGP09.phx.gbl...
And if we continue our discussion, explain me, please: if I know IP address of client (and I can identify it !) - are you sure that server cannot update the client using this address ? It seems to be very strange ...


Imagine the havoc that hackers could wreak with that sort of capability!
Nov 18 '05 #15
"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@140.99.99.130.. .
And if we continue our discussion, explain me, please: if I know IP
address of client (and I can identify it !) - are you sure that server
cannot update the client using this address ? It seems to be very
strange ...


You're not a web developer are you.


ROTFLMAO! :-)
Nov 18 '05 #16
Lucas, hi,

You are right - I'm not a WEB developer.
Can you hint, how Java or Winforms applet can help me in my goal without
polling ?
All what I have seen in above correspondence - that it is impossible, and
when I have believed - you write about applets ...

"Lucas Tam" <RE********@rogers.com> wrote in message
news:Xn***************************@140.99.99.130.. .
"Zvi Danovich" <zv*@cmt.co.il> wrote in news:#jjKspWeEHA.3916
@TK2MSFTNGP11.phx.gbl:
Your answer means - polling. But polling increases system loading and is
highly NOT recommended. Are you sure that polling is the only solution ?


Build an applet - either with Java or Winforms hosted in IE.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/

Nov 18 '05 #17
"Zvi Danovich" <zv*@cmt.co.il> wrote in news:ux3GG7deEHA.3680
@TK2MSFTNGP11.phx.gbl:
Can you hint, how Java or Winforms applet can help me in my goal without
polling ?
All what I have seen in above correspondence - that it is impossible, and
when I have believed - you write about applets ...


Applets are small programs that run on the client. With an applet, you can
initiate data updates with more control. Also, with an applet, you can
cache data to the user's computer, so you don't need to poll as often.

But since the user is remote and there is always a lag between user
requests, you'll need to do database checks before inserting data.

--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 18 '05 #18

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

Similar topics

1
by: Steven | last post by:
hi all i'm primarily a ASP web developer, so i'm not sure if i can do this or not. i want to allow client's on my site to run a local version of the site off their laptop. i want to give the...
12
by: HarveyB | last post by:
I would like to generate non-modal popup windows from ASP.Net code-behind. I have tried using Client Side scripting like "function Test(){ window.open('test.htm',_blank,...
15
by: Michael Rybak | last post by:
hi, everyone. I'm writing a 2-players game that should support network mode. I'm now testing it on 1 PC since I don't have 2. I directly use sockets, and both client and server do...
4
by: Prince Kumar | last post by:
I joined a company recently and they have a java program which hangs (does nothing) after a while. This is no way consistent. It could succeed quite a few times and can fail a few other times....
4
by: Bob H | last post by:
Hi, I'm aware of the different ways to pass variables between ASP.Net pages. For pages that need to pass a variable, we're using the server.transfer method. For others, we're using...
0
by: Stephen Brown | last post by:
I have been running an aspnet application for over a year now and have been updating without problems. This morning, a client sent me an error message that he received at the exact moment when I...
2
by: Stephen Brown | last post by:
We've been using dotNet for a couple of years now and have been updating our live server by just overwriting (Explorer drag and drop) the aspx and assembly files until we had some errors reported...
7
by: David | last post by:
i think i just realized i'm an idiot. again. (not syntactically correct code... just pieces to illustrate) class StateObject { members like socket, receiveBuffer, receiveBufferSize,...
4
by: =?Utf-8?B?TmV0d29yeHBybw==?= | last post by:
Whenever an ASP.NET server-side control is processed, the client form is repainted from the top forcing users to scroll back to where they were on long forms. How can I work around this issue? ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.