WebMatrix is a free, lightweight Web development stack that makes it easy to build web sites that can grow with you, from installation to product deployment & maintenance. Developers can take advantage of mastering fundamental concepts of building apps for the web by using WebMatrix.
ASP.Net Web Matrix is a free tool released by Microsoft for the rapid development of web applications running on servers which support ASP.NET. It is a managed application written in the programming language C#.
Sharing real-world experiences about C#, Dynamics CRM, Dynamics 365, Dynamics NAV/Business Central, SharePoint,PowerBI,ASP.net and more...
Tuesday, August 24, 2010
Thursday, August 12, 2010
Presentation slide @aloashbei community
Now my presented slid "Mobile Application development using .NET framework" at Aloashbei community get together is available at here...
Aloashbei get-together contents
Aloashbei get-together contents
Sunday, August 1, 2010
Disable Browser Back Button
It is a common question for developer how to to prevent user’s from going to previous page using Browser Back button.
You can do it in various way:
Javascript Codesnippet1:
<script type = "text/javascript" >
function disableBackButton()
{window.history.forward();
}
setTimeout("disableBackButton()", 0);
</script>
For internet explorer: <body onload="disableBackButton()">
If you are using firefox then use <body onunload="disableBackButton()"> instead of onload.
You can do it in various way:
Javascript Codesnippet1:
<script type = "text/javascript" >
function disableBackButton()
{window.history.forward();
}
setTimeout("disableBackButton()", 0);
</script>
For internet explorer: <body onload="disableBackButton()">
If you are using firefox then use <body onunload="disableBackButton()"> instead of onload.
Subscribe to:
Posts (Atom)
Method 'StartWorkflowOnListItem' in type 'Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider'
Exception: Method 'StartWorkflowOnListItem' in type 'Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider'...
-
The CheckBoxList control in ASP.NET 2.0 is one of the useful control for asp.net developer. But it is not so easy(also not complicated :))to...
-
There are various ways to use Single Sign on(SSO) in asp.net web application. We can use cookies, session (state server), SAML and web serv...
-
Problem: Today I have faced a new problem(new for me), when I press save button it works fine and then refresh(F5 or Refresh button on brow...