Hi
If you are running asp.net application, it is working fine with IE but not running on firefox browser then you can fix like this
1. Go to Tool
2. Go to Network
3. Go to Setting
4.Select other option excepet “Use System Proxy Setting”
Hi
If you are running asp.net application, it is working fine with IE but not running on firefox browser then you can fix like this
1. Go to Tool
2. Go to Network
3. Go to Setting
4.Select other option excepet “Use System Proxy Setting”
Hi
Here is the list of excellent free ebooks on microsoft technology
Hi
Here is the one of excellent ebook written by Troy Hunt. How to create a complete secure web based project using asp.net and what are the common mistake developer will do while developing the web application.
You can download this free ebooks from his blog
http://www.troyhunt.com/2011/12/free-ebook-owasp-top-10-for-net.html
Using HTML 5.0, Webpage can store data locally within the user’s browser . Previously I was possible only by using cookie concept but there was storage problem. Many browsers have size limit of 4,096 bytes for a single cookie. But using “local Storage” we store upto 5mb data on browser.
For storing data there are 2 options available
a. Using Local storage : Store data with no expiration date.
b. Using Session Storage : Store data for one session only
Syntax for using Local Storage using Javascript
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="LocalStorage.aspx.cs" Inherits="LocalStorage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script type="text/javascript"> function SaveData() { if (typeof (Storage) !== "undefined") { window.localStorage["myKey"] = document.getElementById("txtName").value; alert("Data has been Save in LocalStorage"); } else { alert("Sorry this browser doesnot suppot HTML5"); } } function FetchData() { document.getElementById("txtOP").value = window.localStorage["myKey"]; } </script> </head> <body> <form id="form1" runat="server"> <div> <asp:TextBox ID="txtName" runat="server" /> <br /> <br /> <asp:Button ID="btnSubmit" runat="server" OnClientClick="SaveData()" Text="Submit" /> <br /> <br /> <asp:Button ID="btnDisp" runat="server" OnClientClick="FetchData()" Text="Click here to Fetch Data" /> <br /><br /> <asp:TextBox ID="txtOP" runat="server" /> </div> </form> </body> </html>
Note Syntax will same for SessionStorage.