Please tell me how I can implement Model Popup window on Contact Form
请告诉我如何在联系人表单上实现模型弹出窗口
4 个解决方案
#1
2
You can use jQuery Modal Plugins
您可以使用jQuery模态插件
Here is a nice article to show modal in ASP.NET
这是一篇在ASP.NET中显示模态的文章
- Smum County Modal Form for ASP.NET
- Smum县城模式形式为ASP.NET
#2
0
Which contact form ? If its your custom form, use this function to show it as modal window: http://msdn.microsoft.com/en-us/library/ms536759(v=vs.85).aspx
触点形式?如果它是您的自定义表单,请使用此函数将其显示为模态窗口:http://msdn.microsoft.com/en-us/library/ms536759(v=vs.85).aspx
#3
0
Easiest would probably be the jQuery popup plugin.. I've used it with some success.
最简单的可能是jQuery弹出式插件。我成功地利用了它。
#4
0
<script type="text/javascript">
function openContactForm(){
var win = window.open('contactus.aspx','Contact Us','width=200,height=100');
}
</script>
<a href="#" id="contactLink" onclick="open_contactForm()">Contact Us</a>
for more options see this page.
有关更多选项,请参见此页。
#1
2
You can use jQuery Modal Plugins
您可以使用jQuery模态插件
Here is a nice article to show modal in ASP.NET
这是一篇在ASP.NET中显示模态的文章
- Smum County Modal Form for ASP.NET
- Smum县城模式形式为ASP.NET
#2
0
Which contact form ? If its your custom form, use this function to show it as modal window: http://msdn.microsoft.com/en-us/library/ms536759(v=vs.85).aspx
触点形式?如果它是您的自定义表单,请使用此函数将其显示为模态窗口:http://msdn.microsoft.com/en-us/library/ms536759(v=vs.85).aspx
#3
0
Easiest would probably be the jQuery popup plugin.. I've used it with some success.
最简单的可能是jQuery弹出式插件。我成功地利用了它。
#4
0
<script type="text/javascript">
function openContactForm(){
var win = window.open('contactus.aspx','Contact Us','width=200,height=100');
}
</script>
<a href="#" id="contactLink" onclick="open_contactForm()">Contact Us</a>
for more options see this page.
有关更多选项,请参见此页。