Ask a Question related to ASP.NET General, Design and Development.
-
OJO #1
chat within asp.net?
Hello microsoft.public.dotnet.framework.aspnet!
Is this possible to write very simple chat within asp.net (asking google I
got only commercial components' websites)?
BTW:
How can I dynamically add LinkButton to my WebForm?
TIA
--
OJO
"You cannot say, that everybody's happy,
But you can say, that everybody is now
Safe from each other."
King Diamond
OJO Guest
-
one to one chat
Hi, I am currently creating a chat solution that is only consisting of private chats, there is no need for a lobby, the clients should connect to... -
chat
anybody have an example of any chat in flash??? or how uses the xmlSocket to do it??? thanks -
Chat Example ( unknown destionation: chat-topic-jms)
I can't open and recompile the chat example included with the install (see folder path below). Nor can I copy the code and use it in a new .mxml... -
CHAT about PHP
Hasn't he got the message yet? Martin -
chat about asp.net
hello the world :) Could you give me a good irc server where i can speack about .net programming ? thanks a lot :) -
Steve C. Orr, MCSD #2
Re: chat within asp.net?
Sure, I can envision a chat page where multiple clients keep posting back
and the server keeps track of the conversations.
A more efficient solution might be to use a windows forms app and call a web
service to manage the conversations.
Dim myLinkButton As New LinkButton()
myLinkButton.Text = "This is my LinkButton"
Page.Controls.Add(myLinkButton)
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"OJO" <o_ojo@poczta.onet.pl> wrote in message
news:beeuis$hsd$1@nemesis.news.tpi.pl...> Hello microsoft.public.dotnet.framework.aspnet!
>
> Is this possible to write very simple chat within asp.net (asking google I
> got only commercial components' websites)?
>
> BTW:
> How can I dynamically add LinkButton to my WebForm?
>
> TIA
>
> --
> OJO
>
>
> "You cannot say, that everybody's happy,
> But you can say, that everybody is now
> Safe from each other."
> King Diamond
>
Steve C. Orr, MCSD Guest
-
Gavin Joyce #3
Re: chat within asp.net?
You could write a html chat app that refreshes on a timer. Store the
messages in the Application object.
Thanks.
Gavin Joyce
--
__________________________________________________ _________
nTierGen.NET Code Generator - [url]http://www.nTierGen.NET/[/url]
Stored Procedures (Get, GetPaged, Insert, Update, Delete)
Data Access Layer - C#
Business Rules Layer - C# & VB.NET
Strongly-Typed DataSets - C#
Web Services - C#
__________________________________________________ _________
"OJO" <o_ojo@poczta.onet.pl> wrote in message
news:beeuis$hsd$1@nemesis.news.tpi.pl...> Hello microsoft.public.dotnet.framework.aspnet!
>
> Is this possible to write very simple chat within asp.net (asking google I
> got only commercial components' websites)?
>
> BTW:
> How can I dynamically add LinkButton to my WebForm?
>
> TIA
>
> --
> OJO
>
>
> "You cannot say, that everybody's happy,
> But you can say, that everybody is now
> Safe from each other."
> King Diamond
>
Gavin Joyce Guest
-
OJO #4
Re: chat within asp.net?
Użytkownik "Steve C. Orr, MCSD" <Steve@Orr.net> napisał w wiadomości
news:On8#U4XRDHA.2332@TK2MSFTNGP10.phx.gbl...:D> Sure, I can envision a chat page where multiple clients keep posting back
> and the server keeps track of the conversations.
Ok, "chat" was only unfortunate pretext. Actually I need another feature. I> A more efficient solution might be to use a windows forms app and call a
> web service to manage the conversations.
have instaled windows service on my machine. I control that service over tcp
using System.Runtime.Remoting. Now what I need. I need my page to show some
informations, got using technique described above. So the page should be
constantly refreshed. I could use some client-side script, but want to
refresh only if data is changed. That's the problem. Anyone could help me?
Yes, I tried it milion times today. Control is added to Page.Controls, but> Dim myLinkButton As New LinkButton()
> myLinkButton.Text = "This is my LinkButton"
> Page.Controls.Add(myLinkButton)
doesn't appear on the WebForm (Control.Visible=True doesn't make any trick)
:(
--
OJO
"You cannot say, that everybody's happy,
But you can say, that everybody is now
Safe from each other."
King Diamond
OJO Guest
-
Steve C. Orr, MCSD #5
Re: chat within asp.net?
Two options:
1) Use Smartnavigation. IE will appear to refresh only the parts of the
page that have changed.
Here's more information on that:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebuipageclasssmartnavigationtopic.asp[/url]
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp[/url]
2) Use web services. Use client side code to manually call back to your
server and then update the necessary parts of the UI yourself via DHTML and
javascript. For this you'll probably need to use the web service behavior.
Here's more information on that:
[url]http://msdn.microsoft.com/library/default.asp?url=/workshop/author/webservice/overview.asp[/url]
The linkbutton add code should work well from within the Page Init and Page
Load events. If you are trying to add it from other places in the event
model then things get a bit more dicey.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"OJO" <o_ojo@poczta.onet.pl> wrote in message
news:bef3va$8q5$1@nemesis.news.tpi.pl...back> Użytkownik "Steve C. Orr, MCSD" <Steve@Orr.net> napisał w wiadomości
> news:On8#U4XRDHA.2332@TK2MSFTNGP10.phx.gbl...> > Sure, I can envision a chat page where multiple clients keep postingI>> > and the server keeps track of the conversations.
> :D
>>> > A more efficient solution might be to use a windows forms app and call a
> > web service to manage the conversations.
> Ok, "chat" was only unfortunate pretext. Actually I need another feature.tcp> have instaled windows service on my machine. I control that service oversome> using System.Runtime.Remoting. Now what I need. I need my page to showtrick)> informations, got using technique described above. So the page should be
> constantly refreshed. I could use some client-side script, but want to
> refresh only if data is changed. That's the problem. Anyone could help me?
>>> > Dim myLinkButton As New LinkButton()
> > myLinkButton.Text = "This is my LinkButton"
> > Page.Controls.Add(myLinkButton)
> Yes, I tried it milion times today. Control is added to Page.Controls, but
> doesn't appear on the WebForm (Control.Visible=True doesn't make any> :(
>
> --
> OJO
>
>
> "You cannot say, that everybody's happy,
> But you can say, that everybody is now
> Safe from each other."
> King Diamond
>
Steve C. Orr, MCSD Guest



Reply With Quote

