什么是集成服务器的版本(VS Studio 2008 SP1) [英] What is the version of the Integrated Server (VS Studio 2008 SP1)

查看:79
本文介绍了什么是集成服务器的版本(VS Studio 2008 SP1)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我正在寻找网址路由或网址重写解决方案......

我已经阅读过使用IIS7的一些地方了这些工具的使用很简单。


我在本地开发,有没有人知道VS集成服务器是基于IIS7还是其他什么?b br />
如果我修改了web.config的webServer部分,那么整合的

服务器会考虑这些配置吗?


我'我正在使用Visual Studio 2K8 SP1(版本Pro在工作,版本快递在

home)


谢谢!

解决方案

使用VS2008 SP1(或.NET 3.5 SP1)时,会包含路由位,您可以在项目中包含
。你可以在没有MVC的情况下使用它(它是孵化它的b $ b),但你必须对你的

页面进行相当严格的设置,以避免产生大量的路由规则。


我还没有充分利用IIS 7来查看是否有内置的东西,

但是我不记得任何声明自动路由或URL

重写。


使用.NET,一般情况下,您可以创建一个HTTP处理程序来拦截调用

从用户友好的URL到您的页面。这需要一些编程

才能做到。


-

Gregory A. Beamer

MVP,MCP:+ I,SE,SD,DBA


订阅我的博客
http://feeds.feedburner.com/GregoryBeamer#


或者只是阅读它:
http://feeds.feedburner.com/GregoryBeamer

********************************************

|创造性思考! |

***************************************** ***

" Mike Gleason jr Couturier" < no **** @ invalidhost.comwrote in message

news:e3 ************** @ TK2MSFTNGP03.phx.gbl ...





我正在寻找URL路由或URL重写解决方案......

我已经阅读了一些使用IIS7可以轻松使用这些工具的地方。


我在本地开发,有谁知道VS集成服务器是否是

基于IIS7还是其他什么?

如果我修改了web.config的webServer部分,那么整合的

服务器会考虑这些配置吗?


我正在使用Visual Studio 2K8 SP1(版本Pro在工作,版本快递在

home)


谢谢!


iis 7.0支持.net本机过滤器,因此它们适用于任何内容类型。


vs2008 dev网络服务器不兼容iis 7.0。如果你想做iis

7.0开发你的开发盒必须安装iis 7.0(vista或

server2008)。然后你只需配置vs2008使用iis而不是dev

网络服务器。


- 布鲁斯(sqlwork.com)

Cowboy(Gregory A. Beamer)"写道:


使用VS2008 SP1(或.NET 3.5 SP1),包含路由位,这可以包含在您的项目中
。你可以在没有MVC的情况下使用它(它是孵化它的b $ b),但你必须对你的

页面进行相当严格的设置,以避免产生大量的路由规则。


我还没有充分利用IIS 7来查看是否有内置的东西,

但是我不记得任何声明自动路由或URL

重写。


使用.NET,一般情况下,您可以创建一个HTTP处理程序来拦截调用

从用户友好的URL到您的页面。这需要一些编程

才能做到。


-

Gregory A. Beamer

MVP,MCP:+ I,SE,SD,DBA


订阅我的博客
http://feeds.feedburner.com/GregoryBeamer#


或者只是阅读它:
http://feeds.feedburner.com/GregoryBeamer

********************************************

|创造性思考! |

***************************************** ***

" Mike Gleason jr Couturier" < no **** @ invalidhost.comwrote in message

news:e3 ************** @ TK2MSFTNGP03.phx.gbl ...





我正在寻找URL路由或URL重写解决方案......

我已经阅读了一些使用IIS7可以轻松使用这些工具的地方。


我在本地开发,有谁知道VS集成服务器是否是

基于IIS7还是其他什么?

如果我修改了web.config的webServer部分,那么整合的

服务器会考虑这些配置吗?


我正在使用Visual Studio 2K8 SP1(版本Pro在工作,版本快递在

home)


谢谢!



" Cowboy(Gregory A. Beamer)" < No ************ @comcast.netNoSpamMaécrit

dans le message de news: O5 ************** @ TK2MSFTNGP04.phx.gbl ...


使用VS2008 SP1(或.NET 3.5 SP1),包含路由位,

,您可以将其包含在项目中。你可以在没有MVC的情况下使用它(

就是它孵化的地方),但你必须对你的页面设置相当严格的

以避免产生大量的路由规则。



是的我遵循Chris Cavanagh博客的教程

http://chriscavanagh.wordpress.com/2...url-rewriting /

我无法在VS Studio 2K8(包括Express和Pro)上工作。


路由处理程序永远不会被调用来处理请求...

如果我正在下载他的解决方案,我可以用VS 2K5运行它虽然..但是

他正在手动将System.Web.Routing与下载的DLL链接起来。


我真的很困惑......我想使用URL路由!


我还没有充分利用IIS 7来查看是否有任何问题ng内置,

但我不记得任何声明自动路由或URL

重写。



我已经读过.NET应用程序中手工制作的URL Rewriters只能用于

..aspx扩展。如果你想处理其他任何事情你都不可能。使用IIS7

似乎你可以通过IIS处理链来管理你的句柄...(我读了这样的东西!
类似的东西!)

< blockquote class =post_quotes>
通常,您可以创建一个HTTP处理程序来拦截从用户友好的URL到您的页面的

调用。这需要一些

编程才能完成。



是的,这就是为什么我想使用优雅的URL路由机制!


>

-

Gregory A. Beamer

MVP, MCP:+ I,SE,SD,DBA



谢谢!


Hi,

I''m looking for URL Routing or URL Rewriting solutions...
I''ve read someplaces that using IIS7 can easy the usage of those tools.

I''m developing locally, does anyone knows if the VS integrated servers are
IIS7 based or anything?
If I modify the webServer portion of the web.config, will the intergrated
server take those configs into account?

I''m using Visual Studio 2K8 SP1 (version Pro at work, version Express at
home)

Thanks!

解决方案

With VS2008 SP1 (or .NET 3.5 SP1) there is are routing bits included, which
you can include in your project. You can use this without MVC (which is
where it was incubated), but you have to have fairly strict set up for your
page to avoid having to create tons of routing rules.

I have not dinked enough with IIS 7 to see if there is anything built in,
but I don''t remember anything declarative that automagically routes or URL
rewrites.

With .NET, in general, you can create an HTTP Handler to intercept the call
from a user friendly url to your page(s). It requires a bit of programming
to do it.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/GregoryBeamer#

or just read it:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************
"Mike Gleason jr Couturier" <no****@invalidhost.comwrote in message
news:e3**************@TK2MSFTNGP03.phx.gbl...

Hi,

I''m looking for URL Routing or URL Rewriting solutions...
I''ve read someplaces that using IIS7 can easy the usage of those tools.

I''m developing locally, does anyone knows if the VS integrated servers are
IIS7 based or anything?
If I modify the webServer portion of the web.config, will the intergrated
server take those configs into account?

I''m using Visual Studio 2K8 SP1 (version Pro at work, version Express at
home)

Thanks!


iis 7.0 support .net native filters, so they work with any content type.

the vs2008 dev webserver is not iis 7.0 compatiable. if you want to do iis
7.0 developent your dev box must have iis 7.0 installed (vista or
server2008). then you just configure vs2008 to use iis rather than the dev
webserver.

-- bruce (sqlwork.com)
"Cowboy (Gregory A. Beamer)" wrote:

With VS2008 SP1 (or .NET 3.5 SP1) there is are routing bits included, which
you can include in your project. You can use this without MVC (which is
where it was incubated), but you have to have fairly strict set up for your
page to avoid having to create tons of routing rules.

I have not dinked enough with IIS 7 to see if there is anything built in,
but I don''t remember anything declarative that automagically routes or URL
rewrites.

With .NET, in general, you can create an HTTP Handler to intercept the call
from a user friendly url to your page(s). It requires a bit of programming
to do it.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/GregoryBeamer#

or just read it:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************
"Mike Gleason jr Couturier" <no****@invalidhost.comwrote in message
news:e3**************@TK2MSFTNGP03.phx.gbl...

Hi,

I''m looking for URL Routing or URL Rewriting solutions...
I''ve read someplaces that using IIS7 can easy the usage of those tools.

I''m developing locally, does anyone knows if the VS integrated servers are
IIS7 based or anything?
If I modify the webServer portion of the web.config, will the intergrated
server take those configs into account?

I''m using Visual Studio 2K8 SP1 (version Pro at work, version Express at
home)

Thanks!



"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMa écrit
dans le message de news: O5**************@TK2MSFTNGP04.phx.gbl...

With VS2008 SP1 (or .NET 3.5 SP1) there is are routing bits included,
which you can include in your project. You can use this without MVC (which
is where it was incubated), but you have to have fairly strict set up for
your page to avoid having to create tons of routing rules.

Yes I followed a tutorial on Chris Cavanagh''s blog
(http://chriscavanagh.wordpress.com/2...url-rewriting/)
and I can''t get it to work on VS Studio 2K8 (both Express and Pro).

The Routing handler never gets called to handle the request...
If I''m downloading his solution, I''m able to run it with VS 2K5 though.. but
he''s linking System.Web.Routing manually with a downloaded DLL.

I''m really confused... I want to use URL routing!

I have not dinked enough with IIS 7 to see if there is anything built in,
but I don''t remember anything declarative that automagically routes or URL
rewrites.

I''ve read that hand made URL Rewriters inside .NET apps can only work on
..aspx extensions. If you want to handle anything else you can''t. With IIS7
it seems you can pipe your handle through the IIS handling chain... (I read
something like that!)

With .NET, in general, you can create an HTTP Handler to intercept the
call from a user friendly url to your page(s). It requires a bit of
programming to do it.

Yes that''s why I want to use the elegant URL Routing mechanism!

>
--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Thanks!


这篇关于什么是集成服务器的版本(VS Studio 2008 SP1)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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