Browse by Tags
All Tags »
C#.Net (
RSS)
My article that will explain how to create event for a user control can be found here http://tinyurl.com/yhwd9xw
In one of my projects I found this error Inconsistent accessibility : return type...................... is less accessible than method ......... It was a quite strange error for me as I have not seen the same in past. My classes were defined as: class...
In one of my projects I have been asked to implement temporary security on sepcific module for internal usage and it was also suggested that I will not be putting more efforts on the same. First thing came in my mind was Membership/RoleProvider, but as...
Some time back on the form somebody was looking for some help in searching URL within text and make those URLs as link. Me and that guy tried various regex but the one that worked out I thought to put it on the blog so that it can help me and others later...
Different forums are filled with the questions regarding how to manually implement cookies for login or in other words how to implement "Remeber me" option. Following is the code that will give the idea of how to achieve this task. Controls used 1. TextBox...
If you come up with some requirement in which you have a Checkbox and a DropDownList in GridView control and you are requried to enable disable the DropDownList on the basis of the CheckBox value you can use following Code. --------------------------...
I was replying to one of the post on the ASP.Net forum in which the requirement was like reading txt file contents from different webservers. When he got satisfied with the solution then I thought to put the piece of code in my blog as well for others...
Once again seen lot of questions on the forum related to passing values from popup window to the parent form textbox. Specially when they have some GridView type control in the popup. In the following example I will be using two forms, parent form will...
Seen a lot of questions regarding how to check/uncheck CheckBoxes within a GridView control using JavaScript. So I thought to put it on my blog for quick reference for others and for myself. Following is the code: ------------------------------------...
More Posts