Hi
Can someone plaese tell me what should I study in ASP.net ?
what are the syllabus.......
please help me
and , here is a practical ASP.NET (classic .NET Framework) study path you can follow. pointed you to Web Forms; that is one of the main models in ASP.NET 4.x. If you are learning for existing projects or exams, this outline will serve you well. If you are starting fresh for new work, also peek at ASP.NET Core at the end.
Quick Web Forms example you will use a lot (page life cycle and postback check):
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// initialize only once
BindGrid();
}
} If you are building new apps today, consider learning ASP.NET Core next (cross-platform, modern middleware, razor pages/MVC) at Introduction to ASP.NET Core.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.