hey..
i have a web soluation in asp.net..
there is a folder in web soluation Utility..
And in utility folder there is a web form FRM_Create_User.
Now i want to Response.Redirect("~/Utility/Frm_Create_Users.aspx"); for open the create user page.
But i m geting an error..like below
Server Error in '/Asset Traking System' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.Requested URL: /Asset Traking System/Utility/Login.aspx

Mukesh Kumar TiwariPosted Jun 10, 2014, 12:36 AM
I got the soluation.....
Akhil MittalPosted Jun 9, 2014, 7:36 AM
Anupam SinghPosted Jun 9, 2014, 5:40 AM
Actually its searching /Asset Traking System/Utility/Login.aspx page so :) . it seems you are redirecting user from
~/Asset Traking System/Utility/Login.aspx to ~/Utility/Login.aspx and it didnt find ~/Asset Traking System/Utility/Login.aspx page .
try to put your Login.aspx page in ~/Asset Traking System/Utility folder will resolve this error.