Sign In
Parag's Weblog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ASP.NET 2.0
ASP.NET Datagrid
Custom Control Development
Internet Information Server (IIS)
Misc. Category
Pages
Performance
Session State Management
Support Cases
VSTS
Archive
Archives
July 2009
(2)
April 2007
(1)
July 2006
(1)
May 2006
(2)
April 2006
(1)
March 2006
(4)
February 2006
(4)
January 2006
(3)
December 2005
(6)
November 2005
(3)
MSDN Blogs
>
Parag's Weblog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Parag's Weblog
Silent passport authentication from web and load test in VSTT
Posted
over 3 years ago
by
Parag Agarwal
0
Comments
1. Open IE and clear all cookie cache. 2. Start fiddler. 3. Browse application in IE. 4. It will cause redirect to passport login page. 5. Authenticate. We will land up to home page. 6. Stop fiddler. 7. Examine http traces: a. Filter...
Parag's Weblog
Troubleshooting Web Application Performance
Posted
over 3 years ago
by
Parag Agarwal
1
Comments
Every app is different and every server is different. It's only through extensive understanding of the application that decision can be made to improve its performance. There are no specific set of rules we can define that will ensure app will run with...
Parag's Weblog
Creating EVT & IVT's using VS 2005 Test Suite
Posted
over 5 years ago
by
Parag Agarwal
0
Comments
So i am back after a long break. Just to give you a little bit of background i recently shifted from Microsoft PSS (where i used to support ASP.NET and IIS) to Micorosft IT Division as a developer where we create solutions for our valuable Microsoft Partners...
Parag's Weblog
Getting CryptographicException exception "Padding is invalid and cannot be removed" after Migrating to ASP.NET 2.0
Posted
over 6 years ago
by
Parag Agarwal
1
Comments
Problem Description ============= One of my colleague migrated his asp.net 1.1 application to asp.net 2.0. It worked fine for some time and soon after it is deployed it started giving intermittent security exception below: Event code: 3005...
Parag's Weblog
ASP.NET 2.0 - Errors while re-directing user to an error page after the exception is thrown from COM Port
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Abstract ======= There is an ASP.NET 2.0 application inside of which i connect to serial COM port by using the classes present in System.IO.Port namespace ( http://msdn2.microsoft.com/en-us/system.io.ports.serialport.aspx ). I am able to connect...
Parag's Weblog
Setting Server.ScriptTimeout programatically in ASP.NET not taking into effect
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
The reason behind it was that debug attribute was set to true inside web.config. If debug attribute is set to true, then batch compilation is diasbled <httpRuntime executionTimeout /> or calls to Server.ScriptTimeout is ignored. To confirm, set...
Parag's Weblog
ASP.NET - Getting 0 value for Request/Sec and Total Req. in performance monitor
Posted
over 6 years ago
by
Parag Agarwal
1
Comments
Things to check: - Check the following registry key HKLM\SYSTEM\CurrentControlSet\Services\ASP.NET_1.1.4322\Performance\Library and make sure that it is pointing to correct version of aspnet_isapi.dll. Shutdown IIS and remote registry services...
Parag's Weblog
Why i am getting VBScript runtime (0x800A000D) Type mismatch: 'Session' on ASP page ?
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
There could be two reasons: - 1. Directory under which ASP page resides is not marked as an application. In other words, its not a *virtual* directory. 2. *Enable Session State* option is disabled either on the virtual directory level or one level...
Parag's Weblog
Few Things to take care while designing custom Composite Controls
Posted
over 6 years ago
by
Parag Agarwal
1
Comments
Abstract We can visualize composite control, the composition of existing controls that reuses the implementation provided by child controls for rendering, post back handling etc. While creating composite controls we don’t face too much of complexity...
Parag's Weblog
Understanding Login Controls in ASP.NET 2.0
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
The link below explains what are the Login Controls and how they can be used against custom data source instead of SQL Server by creating the custom Membership Provider classes. http://support.microsoft.com/kb/910440/en-us By creating the custom...
Parag's Weblog
Getting 'Webform_Postbackoptions is undefined’ errors in ASP.NET 2.0
Posted
over 6 years ago
by
Parag Agarwal
14
Comments
Issue ==== I recently got an issue where customer ASP.NET 2.0 website on IIS and on one of the aspx pages he was using RangeValidator control. Browsing to that aspx page was giving client side Java script errors ‘ Webform_Postbackoptions is undefined...
Parag's Weblog
Intermittently Loosing Intellisense in the code behind editor inside visual studio .net
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Issue ==== One of my colleagues was loosing intellisense in the code behind editor for a particular ASPX page intermittently in visual studio .net 2003. Cause ===== Later we found out that he edited the InitializeComponent method by...
Parag's Weblog
Using Web Deployment Project in Visual Studio 2005
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Issue ==== One of my colleague developed ASP.NET 2.0 application in Visual studio 2005. During the development phase he referenced few assemblies from a shared directory that were not in GAC. As a result, all the referenced assemblies were copied...
Parag's Weblog
HTTP_URL Server Variable behaves differently in IIS 5 and 6
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Issue ==== One of my Customer’s configured an ASP file named * NotFound.asp * to process 404 errors inside the Custom Errors section of Internet Services Manager, where he uses HTTP_URL Property to get the bad page or malformed URL that user...
Parag's Weblog
ASP.NET 2.0 - Cannot find control in EditItemTemplate of DetailsView Control
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Recently we got some cases in ASP.NET 2.0, where customers were using: - - DetailsView control bound with SQL Data source control. - DetailsView has few Data-bound Columns as well as one Template Column. - Data bound columns displays correct...
Parag's Weblog
ASP.NET 2.0 - Accessing CurrentNode Property for dynamic sitemaps
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Issue ==== In an ASP.NET 2.0 application, customer was loading the sitemaps dynamically, based on the Logged in user. For example, if the logged in user is a Manager, sitemap related with manager should get loaded in the SiteMapPath control otherwise...
Parag's Weblog
Using Parameters of FormParameter type with ObjectDataSource Control on pages that use Master pages.
Posted
over 6 years ago
by
Parag Agarwal
0
Comments
Recently we got a case where customer is trying to use FormParameters with DataSource controls on pages that uses Master Pages. It is by design that the Form Parameters will generate null values because of Master Pages. You can find the Bug details with...
Parag's Weblog
ASP.NET 2.0 - Extending GridView control to display extra Footer Rows
Posted
over 7 years ago
by
Parag Agarwal
3
Comments
Question How can I extend existing GridView control in ASP.NET 2.0 that has more than one Footer rows? Answer In my previous Blog on “Extending ASP.NET Datagrid Control” I discussed that ASP.NET is built on extensible architecture. GridView...
Parag's Weblog
ASP.NET 2.0 - "Object Reference not set to an instance of an object" when Login and Default Page both inherits Master Page
Posted
over 7 years ago
by
Parag Agarwal
0
Comments
Problem In a sample ASP.NET 2.0 application there is: - Master page, Login.aspx and Default.aspx. Master page has a LoginView control with a Label control inside <LoggedInTemplate> section. Login.aspx and Default.aspx...
Parag's Weblog
Why Update and Cancel events were not firing on dynamically added Datagrid on the place holder control?
Posted
over 7 years ago
by
Parag Agarwal
4
Comments
Recently i got a case where customer was creating and intializing ASP.NET Data grid dynamically on a button click and was adding it inside the placeholder control. After doing that he was not able to fire edit and cancel commands on the Datagrid. After...
Parag's Weblog
Extending ASP.NET Datagrid control
Posted
over 7 years ago
by
Parag Agarwal
0
Comments
Abstract ASP.NET is built on extensible architecture. Each and every control provides a set of basic functionalities which that control supports. If we want to extend/change the existing functionality for any control, .net framework provides...
Parag's Weblog
Enabling Custom Paging on DataGrid Control
Posted
over 7 years ago
by
Parag Agarwal
0
Comments
Abstract When custom pagination is enabled, control does not implement any logic to page over a bound data source. Control expects the programmer to set the data source property with only records to be displayed for a given page. The advantage that...
Parag's Weblog
Handling events inside datagrid control
Posted
over 7 years ago
by
Parag Agarwal
0
Comments
This sample will give us an idea on: - How we can handle several events provided by Datagrid. How we can change behavior, L&F of Datagrid at runtime. Note: - This sample uses pubs database. First let’s define the Datagrid on the...
Page 1 of 1 (23 items)