Click here to Skip to main content

Articles by Sandeep Mewara (Articles: 9, Tip/Tricks: 7)

Articles: 9, Tip/Tricks: 7

RSS Feed

Average article rating: 4.79

Ajax

ClientCallback custom control for web applications
Posted: 19 Dec 2008   Updated: 19 Dec 2008   Views: 42,035   Rating: 4.91/5    Votes: 48   Popularity: 8.25
Licence: The Code Project Open License (CPOL)      Bookmarked: 98   Downloaded: 405
A client callback custom control and how to use it in WebForms.
JavaScript Access to Page Controls after Ajax Update (via Update Panel)
Posted: 22 Sep 2008   Updated: 22 Sep 2008   Views: 40,603   Rating: 4.67/5    Votes: 50   Popularity: 7.93
Licence: The Code Project Open License (CPOL)      Bookmarked: 48   Downloaded: 130
Having access to a page via JavaScript once the update panel's update on server gets over
Partial update of parent page via AJAX (ASP.NET 2.0) on close of a child window - conditionally
Posted: 23 Sep 2008   Updated: 23 Sep 2008   Views: 41,277   Rating: 4.75/5    Votes: 49   Popularity: 8.22
Licence: The Code Project Open License (CPOL)      Bookmarked: 63   Downloaded: 333
Partial update of parent page based on a certain value passed from the child window via AJAX (using UpdatePanel).

ASP.NET Controls

Multiselect Dropdown for Web Applications
Posted: 25 Sep 2008   Updated: 17 Dec 2008   Views: 124,738   Rating: 4.82/5    Votes: 76   Popularity: 9.07
Licence: The Code Project Open License (CPOL)      Bookmarked: 153   Downloaded: 1,942
How to select multiple values from 'a dropdown look & feel' in a Web application
Customizable 'Loading' Control for Web Applications with Designer Support
Posted: 7 Jan 2010   Updated: 7 Jan 2010   Views: 26,256   Rating: 4.86/5    Votes: 46   Popularity: 8.08
Licence: The Code Project Open License (CPOL)      Bookmarked: 90   Downloaded: 762
Just drag n drop of a control to show 'in process' indication in a Web application
Multiple Datatypes in a Single Column of a DataGrid in a Web Application
Posted: 16 Oct 2008   Updated: 25 Nov 2008   Views: 21,756   Rating: 4.77/5    Votes: 29   Popularity: 6.97
Licence: The Code Project Open License (CPOL)      Bookmarked: 31   Downloaded: 157
One out of multiple datatype controls can be shown in a single column of a Datagrid based on row datatype (Customized datagrid column)

Office Development

Import and Export Outlook Appointments (using JavaScript)
Posted: 7 May 2007   Updated: 24 Sep 2008   Views: 76,760   Rating: 4.73/5    Votes: 49   Popularity: 8.01
Licence: The Code Project Open License (CPOL)      Bookmarked: 64   Downloaded: 414
How to import and export appointments from Outlook on client-side via JavaScript (for a web application hosted on the server).

SQL Reporting Services

Using Report Builder to build reports
Posted: 24 Sep 2008   Updated: 24 Sep 2008   Views: 51,860   Rating: 4.76/5    Votes: 42   Popularity: 6.44
Licence: The Code Project Open License (CPOL)      Bookmarked: 51   Downloaded: 410
How to build reports from Report Builder and save it on the Report Server.
Localization of SSRS Reports
Posted: 12 Feb 2009   Updated: 12 Feb 2009   Views: 83,159   Rating: 4.89/5    Votes: 36   Popularity: 7.69
Licence: The Code Project Open License (CPOL)      Bookmarked: 57   Downloaded: 1,465
How to localize the SQL Server Reporting Services Reports
No blogs have been submitted.
No video articles have been posted.

Average tips rating: 4.72

ASP.NET

Disable all 'links' on the page via Javascript [Tip/Trick]
Posted: 25 Feb 2010   Updated: 25 Feb 2010   Rating: 4.80/5    Votes: 9   Popularity: 4.58
Licence: The Code Project Open License (CPOL)      Bookmarked: 3   Downloaded: 0
While working on one of the feature asked by client to disable all the controls of the panel while an asynchronous operation is in process, I encountered that though link buttons are disabled(grayed out) they can still be clicked (thus they still work!) :(I was looking into it why such...
Simple and easy way to clear all the input fields in the form. [Tip/Trick]
Posted: 26 Feb 2010   Updated: 26 Feb 2010   Rating: 0.0 / 5    Votes: 0   Popularity: 0.0
Licence: The Code Project Open License (CPOL)      Bookmarked: 1   Downloaded: 0
ALTERNATIVE #2: via JavaScript function ClearAllControls() { for (i=0; i<document.forms[0].length; i++) { doc = document.forms[0].elements[i]; ...
Simple and easy way to clear all the input fields in the form. [Tip/Trick]
Posted: 26 Feb 2010   Updated: 26 Feb 2010   Rating: 0.0 / 5    Votes: 0   Popularity: 0.0
Licence: The Code Project Open License (CPOL)      Bookmarked: 1   Downloaded: 0
ALTERNATIVE #1: via Server side CodebehindSomething like...private void ResetFormControlValues(Control parent) { foreach (Control c in parent.Controls) { if (c.Controls.Count > 0) { ResetFormControlValues(c); ...
Server side Delimiters in ASP.NET [Tip/Trick]
Posted: 14 May 2012   Updated: 14 May 2012   Rating: 5.00/5    Votes: 6   Popularity: 3.89
Licence: The Code Project Open License (CPOL)      Bookmarked: 6   Downloaded: 0
This is to see all server side delimiters available for use in ASP.NET

Site & Server Management

App_Offline.htm [Tip/Trick]
Posted: 5 Mar 2010   Updated: 5 Mar 2010   Rating: 4.38/5    Votes: 7   Popularity: 3.70
Licence: The Code Project Open License (CPOL)      Bookmarked: 2   Downloaded: 0
If you place a file with the name App_Offline.htm in the root of a web application directory, ASP.NET 2.0 will shut-down the application, unload the application domain from the server, and stop processing any new incoming requests for that application.ASP.NET will also then respond to all...

Programming Tips

Unable to DEBUG Silverlight project? [Tip/Trick]
Posted: 24 Mar 2010   Updated: 24 Mar 2010   Rating: 4.50/5    Votes: 5   Popularity: 2.80
Licence: The Code Project Open License (CPOL)      Bookmarked: 2   Downloaded: 0
Today I was looking at one of the client's Silverlight projects. I was able to debug anything but Silverlight code!I did so much of R&D on the internet and tried various tricks suggested. But only this thing worked for me:When you add a Silverlight project to an ASP.NET solution, you...
Browser back button issue after logout [Tip/Trick]
Posted: 9 Dec 2010   Updated: 27 Jan 2011   Rating: 4.93/5    Votes: 45   Popularity: 8.14
Licence: The Code Project Open License (CPOL)      Bookmarked: 35   Downloaded: 0
How to stop user from accessing the previous pages once he/she logs out and presses browser back button.

Sandeep Mewara

Software Developer (Senior)

India India

Member

He did his B.Tech from IIT Kharagpur.
Currently in Bangalore.


Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 27 May 2012
Copyright © CodeProject, 1999-2012
All Rights Reserved. Terms of Use
Layout: fixed | fluid