Posts by Luis Alexandre Rodrigues • 21 points
3 posts
-
0
votes2
answers208
viewsA: Send geolocation to web service and update to other devices
I think it’s a matter of architecture. You could use an integration Pattern called Publish/subscribe. Using a messaging system, for example JMS, you could use a topic. The client system "publishes"…
-
2
votes4
answers4198
viewsA: How to save and upload data from a . txt to a gridview?
To read the contents of Gridview you could try the following: foreach(GridViewRow row in SeuGridView.Rows) { for(int i = 0; i < SeuGridView.Columns.Count, i++) { String header =…
-
0
votes2
answers243
viewsA: How to run a flash file(.swf) on an ASP.NET page?
You need to set an HTML Object tag on your page that references your swf file. http://www.w3schools.com/tags/tag_object.asp Follow an example:…