0

I created ASP.NET pages using C# code when I compile the (.csproj file) code using COMPILE.BAT file it shows me compilation error with error code cs1303 [ "Label01" not found, "TextBox01" not found" so on... as all forms are unable to make dll...

I wanna compile all the code to make a dll file but I cannot compile it.... Anybody please help me....

Jean-François Fabre
  • 137,073
  • 23
  • 153
  • 219
Karthik Malla
  • 5,570
  • 12
  • 46
  • 89
  • What is `COMPILE.BAT` and what does it contain? – Oded Feb 23 '11 at 14:58
  • compile.bat is a file used to compile a .csproj file it consists of the following code... "%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe karthik.csproj /p:Configuration=Release" – Karthik Malla Feb 23 '11 at 15:16

1 Answers1

0

I found that designer file is missing in your context. Try adding it.

Karthik Malla
  • 5,570
  • 12
  • 46
  • 89