Sourcemap Explorer
Stack · Web frameworks

Microsoft ASP.NET

ASP.NET is an open-source, server-side web-application framework designed for web development to produce dynamic web pages.

Web frameworks

About

ASP.NET is an open-source, server-side web-application framework designed for web development to produce dynamic web pages.

Categories: Web frameworks

Quick facts

Official sitehttps://www.asp.net
CategoriesWeb frameworks

How we detect Microsoft ASP.NET

Each signal alone is rarely conclusive — Sourcemap Explorer cross-references all of them and weights by confidence. You can reproduce any of these checks yourself in Chrome DevTools.

Response header

Server-side fingerprint: the response header reveals the technology behind the page. Visible in DevTools → Network → response headers.

X-AspNet-Version: (.+)
X-Powered-By: ^ASP\.NET
set-cookie: \.AspNetCore
Cookie

Cookies set by the platform. Visible in DevTools → Application → Cookies.

ASPSESSION
ASP\.NET_SessionId
\.ASPXAUTH
HTML source

Substring or regex match against the page HTML — typically a unique class, comment marker, or asset path.

<input[^>]+name="__VIEWSTATE
URL pattern

The page URL itself follows a known pattern (vanity slugs, embeds, hosting URLs).

\.aspx?(?:$|\?)
DOM selector

A DOM selector that only this technology's pages render. Verified at runtime by the content script.

input[name*='__VIEWSTATE']

FAQ

How do I check if a website is using Microsoft ASP.NET?

Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. The popup matches Microsoft ASP.NET's fingerprint signals (response headers, asset URL prefixes, runtime globals, sourcemap paths) and flags it whenever any combination is found. The same checks can be reproduced manually in DevTools — see the "How we detect" section above.

What Microsoft ASP.NET version can Sourcemap Explorer detect?

Microsoft ASP.NET ships as a hosted web frameworks rather than a bundled npm package, so version-specific detection isn't always possible. Where the platform leaks a version in response headers (`X-Powered-By`, `Server`, generator meta tags) we surface it; otherwise we report presence only.

Where can I read more about Microsoft ASP.NET?

Official site: https://www.asp.net. For Sourcemap Explorer's detection guide, see the deep-dive link below or the related guides in the cross-link section.

Detected by Sourcemap Explorer

Open the popup on any page running Microsoft ASP.NETand you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.

Install free on Chrome