2 Mayıs 2015 Cumartesi

ASP.NET Request.Url Özellikleri

Some HttpRequest path and URL properties:
Request.ApplicationPath: /uyeler
Request.CurrentExecutionFilePath: /uyeler/istanbul/Test.aspx
Request.FilePath: /uyeler/istanbul/Test.aspx
Request.Path: /uyeler/istanbul/Test.aspx
Request.PathInfo:
Request.PhysicalApplicationPath: D:\Inetpub\wwwroot\CambiaWeb\uyeler\
Request.RawUrl: /uyeler/istanbul/Test.aspx?query=arg
Request.Url.AbsolutePath: /uyeler/istanbul/Test.aspx
Request.Url.AbsoluteUri: http://localhost:96/uyeler/istanbul/Test.aspx?query=arg
Request.Url.Fragment:
Request.Url.Host: localhost
Request.Url.Authority: localhost:1395
Request.Url.LocalPath: /uyeler/istanbul/Test.aspx
Request.Url.PathAndQuery: /uyeler/istanbul/Test.aspx?query=arg
Request.Url.Port: 1395
Request.Url.Query: ?query=arg
Request.Url.Scheme: http
Request.Url.Segments: /
uyeler/
istanbul/
Test.aspx

Hiç yorum yok:

Yorum Gönder

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...