asp.net、Silverlight、Visifire
我正在使用 Silverlight 和 Visifire 在 .net 框架上开发一个图表应用程序,它是一个 silverlight 应用程序,我在本地主机上运行它。 我已经通过 SQL Server 数据库连接到我的应用程序,并且运行良好,我要寻找的主要内容是,当我更改数据库内的数据时,它应该动态更改我的应用程序的图表值。
我尝试的是,我在网页中设置了页面刷新参数并更新了值,但整个应用程序重新出现。
那么,当我更改数据库中的值时,有什么方法可以并行更改图表值。
期待回复,
谢谢。
I am developing one chart application on .net framework by using Silverlight and Visifire, Its a silverlight application and I am running it on localhost.
I have connected through SQL server database to my application and it is running fine, The main thing that i am looking for is that, when i change data inside the database, It should dynamically change my application's chart values.
What I tried is, I set the page refreshing parameter in my web page and its updating the values also, but whole application is re-appearing.
So, Is there any way to change the chart value parallely as I change my values in database.
Looking forward for response,
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Silverlight 应用程序中使用“DispatcherTimer”,并在计时器的每个刻度事件上调用 UpdateChart()。查看下面的示例代码。
希望这有帮助!
You can use "DispatcherTimer" in Silverlight application and call UpdateChart() on each tick event of the timer. Checkout the sample code below.
Hope this helps!