Click here to Skip to main content
15,912,932 members
Home / Discussions / C#
   

C#

 
QuestionSOAP Pin
TAREQ F ABUZUHRI15-Sep-06 12:41
TAREQ F ABUZUHRI15-Sep-06 12:41 
AnswerRe: SOAP Pin
Guffa15-Sep-06 15:38
Guffa15-Sep-06 15:38 
QuestionIterate through form controls C# Pin
Kasic Slobodan15-Sep-06 11:00
Kasic Slobodan15-Sep-06 11:00 
AnswerRe: Iterate through form controls C# Pin
ystl15-Sep-06 11:11
ystl15-Sep-06 11:11 
GeneralRe: Iterate through form controls C# [modified] Pin
Kasic Slobodan15-Sep-06 11:29
Kasic Slobodan15-Sep-06 11:29 
QuestionPort 80 Pin
AAndrews15-Sep-06 10:21
AAndrews15-Sep-06 10:21 
AnswerRe: Port 80 Pin
User 665815-Sep-06 11:21
User 665815-Sep-06 11:21 
AnswerRe: Port 80 [modified] Pin
AAndrews16-Sep-06 1:46
AAndrews16-Sep-06 1:46 
I had tried that earlier:

<BGCOLOR="#CCCFCC"><br />
protected void SocketThread_1()<br />
		{<br />
			IPAddress ipAddress = Dns.Resolve(Dns.GetHostName()).AddressList[0];<br />
			TcpListener tc1=new TcpListener(ipAddress,80);<br />
			<br />
				while(true)<br />
				{<br />
					tc1.Start();<br />
					Socket so1=tc1.AcceptSocket();<br />
					<br />
					byte[] reading=new byte[1024];<br />
					int dimension=so1.Receive(reading,reading.Length,0);<br />
					string data=System.Text.Encoding.ASCII.GetString(reading);<br />
<br />
					listBox6.Items.Add(data);<br />
<br />
				<br />
				}<br />
		<br />
		}

When you type in the adress bar of any browser //localip:80 there comes some data. However, when you type a URL adress, no any data is incoming. I don't know the reason.


Allen









-- modified at 7:59 Saturday 16th September, 2006
QuestionCalling Method Problem, using this in Methods-calls, HELP pls Pin
blackoasis@googlemail.com15-Sep-06 9:57
blackoasis@googlemail.com15-Sep-06 9:57 
AnswerRe: Calling Method Problem, using this in Methods-calls, HELP pls Pin
Stefan Troschuetz15-Sep-06 20:40
Stefan Troschuetz15-Sep-06 20:40 
QuestionHow to Create a Custom Line Object Control Pin
ystl15-Sep-06 9:35
ystl15-Sep-06 9:35 
AnswerRe: How to Create a Custom Line Object Control Pin
mav.northwind15-Sep-06 21:56
mav.northwind15-Sep-06 21:56 
GeneralRe: How to Create a Custom Line Object Control Pin
ystl18-Sep-06 4:58
ystl18-Sep-06 4:58 
Questionactive directory "DirectorySearcher" security Pin
WetRivrRat15-Sep-06 9:06
WetRivrRat15-Sep-06 9:06 
QuestionError installing COM component in system32 Pin
Abbas8215-Sep-06 8:21
Abbas8215-Sep-06 8:21 
QuestionWebservice C# [modified] Pin
acardeiradias15-Sep-06 8:00
acardeiradias15-Sep-06 8:00 
AnswerRe: Webservice C# Pin
Stefan Troschuetz15-Sep-06 20:44
Stefan Troschuetz15-Sep-06 20:44 
GeneralRe: Webservice C# Pin
acardeiradias15-Sep-06 23:28
acardeiradias15-Sep-06 23:28 
Questionerratic NaN's in a C# program Pin
davidmakovoz15-Sep-06 6:26
davidmakovoz15-Sep-06 6:26 
AnswerRe: erratic NaN's in a C# program Pin
Not Active15-Sep-06 6:40
mentorNot Active15-Sep-06 6:40 
AnswerRe: erratic NaN's in a C# program Pin
leppie15-Sep-06 12:42
leppie15-Sep-06 12:42 
QuestionModeless Form Pin
zaboboa15-Sep-06 6:16
zaboboa15-Sep-06 6:16 
AnswerRe: Modeless Form Pin
Not Active15-Sep-06 6:31
mentorNot Active15-Sep-06 6:31 
GeneralRe: Modeless Form Pin
zaboboa15-Sep-06 6:37
zaboboa15-Sep-06 6:37 
GeneralRe: Modeless Form Pin
Not Active15-Sep-06 6:42
mentorNot Active15-Sep-06 6:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.