Is there any built in function in ASP.NET Like print_r in Php which displays information about a variable in a way that's readable by humans.
Yaazi
Posts
-
Any Function like Print_r???? -
Restrict Multi Login Problemwhen user logged in i set its LoginBit and didnt allow same user to log in again but if user closes without signing out and he returns then how can i found that it is the same user who was actually using the session. he must not receive error that user is already signed in
-
Log Out issuei think u have to add Headers to restrict Back view Try this Response.CacheControl = "no-store"; Response.AddHeader("Pragma", "no-cache"); Response.AppendHeader("Cache-Control", "no-store");
-
MasterPage Link ProblemHello friends i am having a little issue hope anyone can help me out. i have a situation my masterpage location changes due to some security requirements, so i am storing Foldername in Web.Config in AppSetting like this --> add key="adminFolder" value="~/Temp/" e.g so i dont need to change everywhere when i have to update the foldername and getting back in Page Load event. String adminFolder = System.Configuration.ConfigurationManager.AppSettings["adminFolder"]; protected void Page_PreInit(Object sender, EventArgs e) { this.MasterPageFile = adminFolder + "MasterPage.master"; } this approach help me out to solve dynamically assign the foldername of master page but i cant see Design View of my Code because i dont know how cant i link "adminFolder" Key in the Top of aspx file