Asp.Net 和外部 DLL
我正在编写一个与外部 dll (activex) 一起使用的 Web 应用程序, 该dll是由Skype开发人员编写的,
问题是, 如果客户端发生任何事件(状态更改、附件等),则需要在服务器端调用委托。
因此,当我更改 Skype 程序中的状态时,似乎确实发生了回发,但对客户端没有影响。
例如,我试图通过服务器端的新值更改标签内容(使用在服务器上运行的标签),但没有任何变化。
我成功地制作了一个java脚本间隔 所以当它识别出任何变化时 它取代了标签的内容。
我不想使用它,因为 dll 已经支持该事件。
提前致谢。
i'm writing a web application that works with an external dll (activex),
the dll was written by skype developers,
the problem is that,
in a case of any event (status changing, attachment, etc..) in the client side, a delegate needs to be call on the server side.
so when i'm changing a status in the skype program, it seem that a postback really happen but there is no affect on the client side.
for example , i'm trying to change a label content by his new value from the server side (using label that runat server) but nothing change.
i succedded to make a java script interval
so when it recognize any changes
it replace the content of the label.
i preffer not to use it because the dll already support that events.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您的问题是模拟回发以使标签更改其内容。如果是这样,此链接可能会有所帮助:
在asp.net中使用doPostBack函数
It seems that your problem is simulating a post-back to make the label change its contents. If so, this link might be helpful:
Using doPostBack Function in asp.net