具有 Web 用户控制的地理地图
我正在尝试使用地理地图来查看位置。我正在使用此代码
function OnLoad() {
$.ajax({
type: "POST",
**url: "CS.aspx/CreateWorldMap"**,
data: '{}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: DrawWorldMap
});
}
,其中 CS.aspx 是 aspx 页面,而 CreateWorldMap 是该页面内的函数。 任何人都可以建议我如何在 url 属性中使用 usercontrol 而不是此 aspx 页面。?
bcoz 我必须将其集成到一个开源网站中,该网站只接受用户控件而不是网页..
谢谢..
I'm trying to use geomap to view the location.. I'm using this code
function OnLoad() {
$.ajax({
type: "POST",
**url: "CS.aspx/CreateWorldMap"**,
data: '{}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: DrawWorldMap
});
}
where CS.aspx is aspx page and CreateWorldMap is a function inside this page..
Can anyone suggest How can i use usercontrol in the url propety instead of this aspx page.??
bcoz i have to integrate this in an opensource site which only accepts usercontrols not a web page..
Thank you..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,只有一种方法:在页面代码隐藏中创建一个静态方法,该方法将实际调用 UserControl 方法。 用户控件中定义
因此,在页面中的
create:并使用您的代码加载它
In my opinion there exists only one way: Make a static method inside your page code-behind which will call actually UserControl method. So, in user control define
in your page create:
and load it with your code