Link to home
Start Free TrialLog in
Avatar of CharlieDev
CharlieDevFlag for United Kingdom of Great Britain and Northern Ireland

asked on

c# asp.net- forcing page load

Hi,
i have an asp page and a web user control. in the web user control I want to force the asp page to reload after an action has happened , how can I do this?

I want to force" protected void Page_Init(object sender, EventArgs e)" in TimesheetDay.aspx.cs to run from a method in the EntryTimesheetControl.ascx.cs

Thanks
SOLUTION
Avatar of JuanCarniglia
JuanCarniglia
Flag of Argentina image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Response.Redirect is not the same as Server.Transfer.

See this link:

http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=15

Greetings
Avatar of CharlieDev

ASKER

Thanks