:)hi freinds. how to know all the systems IP Addresses which are conected in network at a time. Clearly is there any comand which displays all the systems IP adresses which are connected in network at that instance. Regards Shivaprasad D Atthigode Good day ahead
Shivaprasad D Atthigode
Posts
-
IP adresses -
State managementhi i like to store set of information after once i saw a page, and to use the same info on repitative visits to the same page without touching server.clearly to save the info once retrived from server in client.What is the best way to achive, View State.? Sessions..? Application State.? and please the show the way to start by provideng piece of code.:)
-
server loghi i have 2003 server running, and i want to track all the systems(system IP's) who accessed my 2003 server, how and where to get that, kindly help me out!!!!!:sigh:
-
movin texthi do we have any control which moves text inside that,in windows forms (just like marquee property). if not hw to make my text moving on windows form ?:(
-
Populate comboboxhi if its a web application, it wont take windows.forms, and u wont get combobox control also.... in such case, use " using system.web.ui.webcontrols; " { dropdownlist1.items.add(reader[0].tostring()); } this will defenetely work:)
-
ReflectionHi somebody explain me the concept of reflection, and when we need that, and to use that.:doh:
-
Populate comboboxusing sytem.oledb; using system.windows.forms; oledbconnection connect=new oledbconnection; oledbcommand command=new oledbbcommand("Select 'field_name' from 'tabel' where 'condition'", connect); oledbreader reader=command.executeReader(); reader.read(); { combobox1.items.add(reader[0].tostring()); } reader.close(); connect.close();
-
Populate combobox:)what a mess is this!! "cbo.extension.text" will never populate items in to combobox control, this only displays the specified text if it is already there in combobox items collection. to populate the items u should specifie { combobox.items.add(dtr["filterKey"].tostring()); }
-
Sub-classingwhat is sub-classing in C#, and hw to achive that.
-
Framework compatibilityhi does my application developed on .net 2.0 will work on .net 1.1 framework, is downward compatibility maintained by .net