Advanced Forum Search Results
-
Hi , avtar
Thanks for your reply.
Now I can get the IP Address using your solution.
But how to get the Server Name in silverlight?
-
Hi, Bhagirath
Thanks for your reply.
So I can;t get HostName from Silverlight Apl directly.
And have to get it from Http and send it to my silverlight app?
-
Oh, sorry, may be my confused expression.
I don not want the client ip address.
oppositely, I want to get server ip which is displayed in client side.
For example
My server IP is 127.0.0.1 and Name is Server_PC
Client IP? of couse i don;t know it.
And i want it (127.0.0.1 Server_PC) to be displayed in client side
Any ...
-
Hello, all
Does Silverlight have class to support to get local PC-Name or IP Address?
I want to do one app which could see the server name or ip from client side. Any suggestions?
Thanks...
-
Hello, everyone
I have some sample code bleow:
string xmlString = "<root xmlns=\"http://example.com/2006/ns1\"> <child /> </root>";
XDocument xDoc = ...
-
You can try this
string xmlString = "<MessageCollection> <Message id=\"message1\">" + "Test message 1" + "</Message> <Message id=\"message2\">" + "Test message 2" + ...
-
Thank you very much.
I just find the way how to add, update, delete xml file using XDocument
There are sample source.Hope it is useful to others.
XDocument xd = XDocument.Parse(xmlString);
// add child node of appSettings
xd.Root.Element("appSettings").Add(new XElement("add", new XAttribute("key", ...
-
Hi, all
I have a xml string like below:
<Product>
<A id="001"/>
<B id="002"/>
<C id="003"/>
<D id="004">
<D1 id="0041" ...
-
Hi,all
When the item of AutoCompleteBox is selected, the TextChanged event fires twice.
I have no idea about this.
I have sample code below, you can try it.
this.acb.ItemsSource = new string[] { "110", "120", "130" };
this.acb.TextChanged += new RoutedEventHandler(acb_TextChanged);
void acb_TextChanged(object ...
-
Hi, it didn;t work either.