- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;

you can see above picture select the Organize Usings. After select Remove Unused Usings.
Remove the some Reference.
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System;
- namespace WebApplication1
- {
- public partial class testing : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- }
- }
- }

Dhanik SahniPosted Jan 22, 2015, 7:32 AM
That is really cool
Manish Kumar ChoudharyPosted Dec 27, 2014, 11:50 AM
Good one...