ASP.Net 自定义控件在脚本中使用嵌入资源文件名?
我有一个带有一些嵌入式资源的自定义控件。我需要能够在 JavaScript 中引用控件外部的一些嵌入材料。假设我在控件中嵌入了一个图像文件,并且在控件外部有一个脚本将对该文件执行某些操作。如何在控件之外引用该文件名?
更新:不确定这是否可能,我还没有找到任何相关信息。有人有主意吗?也许我在嵌入式 JS 中创建函数来访问这些文件?
I have a custom control that has some embedded resources. I need to be able to reference some of the embedded material outside the control in JavaScript. So let's say I have an image file embedded in the control and I have a script outside the control that will do something with that file. How do I reference that file name outside the control?
Update: Not sure if this is even possible and I have not found any information on it. Anyone have an idea? Maybe I create functions inside the embedded JS to get access to those files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个是什么你在找??看起来您可以使用 ClientScriptManager 类中的 GetWebResourceURL 来执行此操作。
Is this what you are looking for?? It looks like you can use the GetWebResourceURL from the ClientScriptManager class to do this.