Anas Ghanem
All about ASP.NET
Sign in
|
Join
Home
Contact
About
RSS
Atom
Search
Tags
.NET
.NET 4
Ajax
Ajax Toolkit
ASP.NET
ASP.NET 4
C#
Caching
community News
DotNetNuke
GDI+
GridView
IIS
Infragistics
LoginControls
Mix 09
News
Presentations and Talks
Security
Session
Tips and Tricks
Tools
Vista
Visual Studio
WAP
Windows XP
Sponsors
advertise here
News
Subscribe in a reader
Navigation
Home
Blogs
Archives
April 2011 (1)
May 2010 (1)
April 2010 (4)
March 2010 (1)
January 2010 (1)
October 2009 (1)
August 2009 (2)
July 2009 (3)
June 2009 (1)
May 2009 (1)
April 2009 (5)
March 2009 (5)
February 2009 (6)
January 2009 (5)
December 2008 (2)
November 2008 (1)
October 2008 (2)
September 2008 (4)
July 2008 (6)
June 2008 (1)
May 2008 (2)
April 2008 (3)
March 2008 (5)
February 2008 (1)
Favourite Links(blogs,sites...)
Scott Hanselman
ScottGu's Blog
Microsoft Press
MSDN Blogs
Channel9
Zdnet
Techrepublic
Smashing Magazine
My Articles
Avoid session loss when using Cookieless sessions with XML Sitemap Provider
Login control FAQ
Comparing ListView with GridView,DataList and Repeater
January 2009 - Posts
0
Comments
mailto: from GridView row to allow the user to send emails
by
anas
If you want to create a HyperLinks in the GridView , so that if the user click on one link the outlock (or email client) will be opened and carry the clicked email ? If we assumed that the User Email is stored in a column called "Email" , then...
Filed under:
ASP.NET
0
Comments
Hiding some page controls from the Unauthenticated users
by
anas
If you want to hide controls in the page that is being displayed by the logged in and not logged in users , then you can check the Request.IsAuthenticated property which returns true if the user is logged in ( of course you must be using Windows or Forms...
Filed under:
ASP.NET
,
Security
0
Comments
The 'SkinId' property can only be set in or before the Page_PreInit event for static controls
by
anas
If you get that error , then you would probably is trying to set the SkingId programatically.Note that if you are adding your control dynamically, you should assing that proeprty before adding the control to it's parent.I noticed this issue also when...
Filed under:
ASP.NET
0
Comments
How to select an item in Listview based on the DataKey
by
anas
If you want to Select a listView item based on a Key , you can handle it's ItemDatabound event like below: private int YourKeyValue = 3; protected void ListView1_ItemDataBound( object sender, ListViewItemEventArgs e) { if (e.Item.ItemType...
Filed under:
ASP.NET
2
Comments
Resetting scroll position after completion of the partial update
by
anas
When you use the UpdatePanel to implement partial updates,the scroll position will be maintained between the asynchronous post-backs.However,you may need to reset the scroll position after the partial update completed ( after receiving the response)....
Filed under:
ASP.NET
,
Ajax
More Posts