是否可以将VB.Net与ASP页面混合? [英] Is it possible to Mix VB.Net with ASP page?

查看:76
本文介绍了是否可以将VB.Net与ASP页面混合?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有我的VS项目,它是VB.Net项目的组合,其中包括一个运行Javascript的HTML页面(见下图).

Hi, I have my VS project, it's a mix of VB.Net project that I included an HTML page that run Javascript (see picture below).

我想知道是否还可以在VB.Net项目中包含一个ASP页面.

and I would like to know whether it's also possible to include an ASP page in a VB.Net project.

推荐答案

并非如此,因为这没有任何意义.

Not really, as it makes no sense. 

HTML页面是显示在Web浏览器中的内容.您当然可以使用webbrowser控件,但是我想您至少要忙到2017年,然后才能设法使用它.

A HTML page is something which is shown in a webbrowser. You can of course use the webbrowser control for that, but I guess that you are at least busy until 2017 before you have managed to use that in a little bit way it can be used. 

您可以简单地使用流程开始执行相同的操作.

You simply can use the process start to do the same.

Dim p As New Process
Dim pi As New ProcessStartInfo
pi.FileName = "http://msdn.microsoft.com"
p.StartInfo = pi
p.Start()


这篇关于是否可以将VB.Net与ASP页面混合?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆