Browse by Tags
All Tags »
ASP.NET (
RSS)
You would obviously have come across the “Browser Compatibility” issues many times while designing a webpage. For example, assigning a CSS class to any control may render well with IE but it may not get rendered that perfect way in Mozilla;...
I have seen many posts over forums asking for how to send emails in asp.net. In this blog post, I am going to post code snippet to send email in asp.net (with / without attachment). MoreOver, for Complete FAQ for the System.Net.Mail namespace found in...
I was having a requirement to Stream Audio files in one of my on-going ASP.NET application; While I googled, I found that to Stream Audio files in a webpage, we need to use <object> tag. The <object> element can support many different media...
I needed to read my SMTP email settings defined under system.net section in my web.config file. In order to use eNewsLetter and other SiteAdmin CMS modules that sending email notifications; you can setup your web.config to defind SMTP services settings...
Recently, I came across a post in the asp.net forums (This one > http://forums.asp.net/t/1313476.aspx ) , where a user was trying to get the value of a dropdownlist's selected value kept in one UserControl, and set this value as text of one label...
Many web pages feature images that can be maximized and restored within the same page. There is a simple way to display an image on your web page with maximization and restoration capabilities. I have taken a test image and set the initial height and...
A CSS Filter is a coding technique used to hide or show CSS markup depending on the browser's brand and/or version number. Browsers have different interpretations of CSS behavior and different levels of support for the W3C standards. Web developers...
I have seen posts today asking for Asynchronous Request to Server which will Query the Database for certain information. Here, I am giving one example, which will send an Asynchronous Request to server for Checking the availablity of the UserName entered...
In one of my previous blog post, I Described about Mutually Exclusive CheckBox inside GridView . In this example, there is a "Select All" checkbox in header to select/deselect all the checkboxes inside GridView. MoreOver, if user select all...
I was having a development requirement in which i have to implement CheckBoxes inside GridView. Scenario is like, There is one TemplateColumn in GridView which is used to Select any Row within GridView. So, There will be CheckBox inside ItemTemplate of...
I was having few hours of work-a-round when I was trying to Set-up/Deploy the DotNetNuke Environment at my local pc. I restore the DB Backup of DNN, copied the source at my local pc drive and configured the Virtual Directory for the application. I also...
I had to find some work-a-round for a scrollable repeater. The way I want it to be is to have fix headers with able to vertically scrollable. I found lots of example dealing for this solution with CSS and JavaScript. Luckily, I found one which works in...
Multiple Active Result Sets (MARS) is a feature in ADO.NET 2.0. It allows execution of multiple batches against Database on a single connection. Preeviously, only one batch could be executed at a time against a single connection. But, execution of multiple...
Below, is the JavaScript code function snippet I used in one of my web application; to provide the functionality of "Select All Child" when ParentNode CheckBox is Checked; means to automatically Check all the ChildNode CheckBoxes, when you Check...
The Repeater control is the only Web control that allows you to split markup tags across the templates. To create a table using templates, include the begin table tag (<table>) in the HeaderTemplate, a single table row tag (<tr>) in the ItemTemplate...
More Posts
Next page »