Exploreasp
Tuesday, October 2, 2012
Disable Cut, Copy & Paste in ASP.Net textbox
<
asp
:
TextBox
ID
="TextBox1"
runat
="server"
oncopy
="return false"
onpaste
="return false"
oncut
="return false"></
asp
:
TextBox
>
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Ajax CalendarExtender displaying at wrong position in Chrome
< script type ="text/javascript" language ="javascript"> function onCalendarShown(sender, args)...
Conditionally hide CommandField or ButtonField in Gridview.
Suppose FieldName is the Bit field which tells whether the link should be visible true or false so design your gridview template like th...
Get current page name in ASP.NET
This function can be used to retrieve the current page:s name, i.e default.aspx, hello.aspx or whatever. public string GetCurrentPage...
Navigate to previous page in Asp.net
There are various ways using which you can navigate back to the previous page. To keep the example short and simple, I will be using two ...
No comments:
Post a Comment