1
Answer

Websockets + html 5

Krishna Rai

Krishna Rai

8y
299
1
Hi Guys,
 
I am a java developer and working on java and related platform on more then 8 years. i am new to C# programming and I am looking for general startup point to create a server program which would listen to an html 5 compatible http request and send request back asynchronously.
 
any example related to web sockets (using C# with html5) will be a good  start .
 
thanks 
Krish 
Answers (1)
0
Frogleg

Frogleg

NA 7.9k 33k 13y
Here is my idea on your project
Accepted
0
Frogleg

Frogleg

NA 7.9k 33k 13y
There is a problem in your code - but it will take some time to work it out.
Soon as I get somewhere, I'll post result
0
Kevin

Kevin

NA 10 6k 13y
Thank you for that code to compare if the ID is already in the array list.  They should not both go straight to the last name the lastStudent button should go straight to the last name but as for the nextStudent button it should display a different student every time until the end of the array list.  But what I am having trouble with is that when I click the nextStudentButton I can continue to click until the end of the array not the last student.  
0
Frogleg

Frogleg

NA 7.9k 33k 13y
When I use either button- it moves to last name ?
As to check id try this

 public void checkId()
{
foreach (Student stu in students)
{
if (stu.IdNumber.ToString() == idAddTextBox.Text)
{
MessageBox.Show("Sorry.Student id already in use");
return;
}
}
}