Home
Projects
Tutorials
All Tutorials
Code Samples
Quick Snippets
 
About

Tutorials
Welcome to the OSMstudios tutorials. This is the quickest changing section of the OSMstudios website. Our eventual goal is to turn out two new tutorials every week, but in order to do that we need ideas. Use the contact form under "About" to send us suggestions.



Quick Snippets:

To keep the AJAX UpdatePanel in ASP.NET from changing scroll position (and causing a snap-to effect) insert this Javascript function beneath the ScriptManager tag.

<script type="text/javascript">
//This code keeps the AJAX postback from affecting scroll position.
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_beginRequest(beginRequest);

function beginRequest() {
   prm._scrollPosition = null;
}
</script>


Click here to view all Quick Snippets
Coming Soon:
- ASP.NET URL Rewriting
- Controlling Friendly Bots
- Advanced ASP.NET CAPTCHA Control
- Stopping Bots


Code Samples:
Not seeing what you need? Why don't you check our Code Samples section for completing common tasks.

There are 24 samples present.


The Dark Side of the Internet:
The internet brings us a vast wealth of knowledge never before available to humankind, but as developers it is important that we know about the otherside of the internet. There are a lot of dangers facing developers and their clients. These tutorials will help you circumvent several of these challenges.



Uncategorized:
Registering a .NET DLL to COM
.NET Forms Authentication with Roles
Windows Path Too Long
 
© 2007-2010 OSMstudios