---
title: "Page_Load Fired everytime"  
description: "Page_Load Fired everytime"  
author: "Anonymous User"  
published: 2010-10-14  
updated: 2010-10-14  
canonical: https://www.mindstick.com/forum/39/page_load-fired-everytime  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Page_Load Fired everytime

Hi Guys\
I am new for **[ASP.NET](https://www.mindstick.com/articles/934/default-folders-available-inside-the-asp-dot-net-application-folder)** , please help i have [problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic) with page_load which firing every time.\
\

## Replies

### Reply by Uttam Misra

use Page.IsPostBack to prevent reinitialization of your page.\
\
\
Sub Page_Load\
if Not Page.IsPostBack then\
lbl1.Text="MindStick" \
end if\
End Sub\
\
\
\
\
If Page.IsPostBack = False\
If Me.IsPostBack = False\
\
\


---

Original Source: https://www.mindstick.com/forum/39/page_load-fired-everytime

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
