by rlynch
August 04, 2010 05:45
Add the following link into the header of your page to load the most recient version of Jquery from Google.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
by rlynch
April 21, 2010 06:01
The wonderfull world of SEO tends to frown on query string arguments and will actually almost penalize you for using them. Due to that it is often preferable to change your urls to have a more SEO friendly look.
e.g. http://lynchtek.com/examples.aspx?id=30989&cat=sql is not as user fri...
[More]
by rlynch
April 05, 2010 09:27
OK.. this was copyed from a post on MSDN.. but I have searched for this type of information more than once and only found it this time.. based on that.. and to prevent me from loosing it again :) ..... here is the post in total.
(credit to Kathy Kam - 2006)
DateTime has its own set...
[More]
by rlynch
February 16, 2010 00:40
Pre Load a ListView Control for insert template
[More]
by rlynch
February 01, 2010 12:49
fixing style arguments of disabled input controls.
[More]
by rlynch
January 26, 2010 06:05
http://leedumond.com/blog/nested-listviews-and-more-working-with-databound-controls-inside-the-listview/
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
Tags:
asp.net
by rlynch
January 21, 2010 09:48
outlook security workaround
[More]
by rlynch
September 09, 2009 11:48
http://www.ajaymatharu.com/integrating-blogengine-into-an-existing-site/
Great link showing which lines to take from the blogengine web.config to paste into the root if you want to integrated the both sites to a single web app.
Currently rated 4.5 by 2 people
- Currently 4.5/5 Stars.
- 1
- 2
- 3
- 4
- 5
Tags:
asp.net
by rlynch
August 13, 2009 09:18
Apologies to C# users the code here is VB but it shouldn't be too hard to convert.. If I get time I will do so and post up that version also..
The key methods are "impersonateValidUser" and "undoImpersonation"
impersonateValidUser takes 3 arguments "...
[More]
by rlynch
July 17, 2009 05:33
Remove directory from non authenticated users..
Add inside system.web (The following removes access to the website root to non authenticated users) of a specific directory
<authorization><deny users="?"/></authorization>
The following allows access t...
[More]