Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 3.5 > ASP.NET 3.5 Professionals
|
ASP.NET 3.5 Professionals If you are an experienced ASP.NET programmer, this is the forum for your 3.5 questions. Please also see the Visual Web Developer 2008 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 3.5 Professionals section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 6th, 2009, 09:10 AM
Registered User
 
Join Date: Nov 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Question How to Make Live Broadcast on the web page

I really want to know how i can broadcast(live) in my web page

what kind of control to use nd .....just how to do it....

really..!!!!!!!
 
Old December 1st, 2009, 03:07 AM
Friend of Wrox
 
Join Date: Nov 2009
Posts: 156
Thanks: 13
Thanked 16 Times in 16 Posts
Default

you can define a global variable (Application) in Global.asax file like this

Application_Start(...)
{
Application.Add("message", "");
}

when you want to send a message, you should set your message into Application["message"] property like this

sendButton_Click(...)
{
Application["message"] = messageTextBox.Text;
}

and in your pages in Load event (Page_Load(...)) check that if message is not empty, you should show it. and if you want you can a Ajax timer to check this in some periods of time.





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make Live Voice Chat through ASP.NET ? savan_thakkar ASP.NET 1.0 and 1.1 Professional 2 January 22nd, 2013 12:30 PM
How to Make Live Broadcast on the web page vivek.talkin ASP.NET 3.5 Basics 0 November 6th, 2009 09:08 AM
Develop web application with Live communication se hardikpatelmca ASP.NET 2.0 Professional 0 May 3rd, 2007 10:01 AM
how to make a web page expire connect2sandep ASP.NET 2.0 Professional 1 March 14th, 2006 08:36 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.