Shahin
Shahin

Reputation: 12861

Visual Studio recover source file manually

I lost on of my ASP.NET usercontrol in Visual studio 2010
Is there any way to recover target file manually?
The UserControl is named billpay.ascx.
I saw some file with similar name in this directory: (C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\negso.ui\b0ed5857\e612bf58)
They named as

Is there anyway to recover target file?
Auto recover window did not open for me.

Upvotes: 0

Views: 1305

Answers (2)

Aristos
Aristos

Reputation: 66649

In the same directory as you say, search for the DLL files and open them with an asp.net de-compiler like the "Net Reflector". You can then see the source code and get it back.

Upvotes: 1

Alireza Maddah
Alireza Maddah

Reputation: 5885

Check the following path:

\…\My Documents\Visual Studio <version>\Backup Files\<projectname>.

Upvotes: 1

Related Questions