954,574 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

how to run/test Chat project in asp.net ?

hi,


i have one chat project. i m totally noob in that.

in that server and client scripts...

how can i test or run in my browser.


i use vs2010 and mssql 2008.


please help me..

thanks in advance

jack

jackparsana
Junior Poster in Training
54 posts since Sep 2010
Reputation Points: 10
Solved Threads: 1
 

You have to request same web-app through two or more instances of Web-Browser (user).

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 
<asp:BulletedList ID="ChattersBulletedList" runat="server" />
<asp:BulletedList runat="server" ID="ChatMessageList" />
<asp:TextBox ID="NewMessageTextBox" Columns="50" runat="server" />


We'll also add a button that we will later use to trigger an asynchronous call back to

Default.aspx:

<asp:Button ID="SendButton" Text="Send" runat="server" OnClick="SendMessage_Click"/>
The complete form should look something like this:
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />
Chatters<br/>
<asp:BulletedList ID="ChattersBulletedList" runat="server" />
Chat Text<br/>
<div style="width: 640px; height: 240px; overflow: auto;">
<asp:BulletedList runat="server" ID="ChatMessageList" />
</div>
Send Message Text<br/>
<asp:TextBox ID="NewMessageTextBox" Columns="50" runat="server" /><asp:Button ID="SendButton" Text="Send" runat="server" />
</form>
vikramrandhawa
Newbie Poster
8 posts since Aug 2011
Reputation Points: 7
Solved Threads: 2
 

Hi, I have made a chat project before , but it uses Asp.NET,JAVA,Red5,actionscript,javascript. It was totaly a hard project.I used red5 for datastreaming,actualy our program includes not only chat system but also video conferans system.Therefore I used Red5 on VPS, and actionscript to make connection with red5 and flash web cam.I develop some small functions on JAVA for enhancing red5 application.Finally I put flash in ASP.NET pages.

If you want more detail on project, mail me over here.

daniwebcomuser
Newbie Poster
2 posts since Sep 2011
Reputation Points: 10
Solved Threads: 0
 

Hello guys,


Thanks for you valuable reply.

Please help me.

Dear, daniwebcomuser - I want to run chat only. so you can help me with your project.
Please help me to give me one sample code with example.

Thanks in advance.


jack

jackparsana
Junior Poster in Training
54 posts since Sep 2010
Reputation Points: 10
Solved Threads: 1
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: