hemantg

Stories kicked by hemantg

Blog by Hemant Gupta: ASP.net Base Page(hemantg.blogspot.com)

submitted by hemantghemantg(145) 6 months, 25 days ago

The auto-generated ASP.NET page class must extend the Page class (as shown in the code below), You can optionally create a base class from which all pages will derive from, When creating a base class, you'll typically have this base class extend the Page class. If you are using the code-behind model your code-behind classes will need to be modified to inherit from the new base class as opposed to the Page class. This gives you greater flexibility in controlling your application and reduce code significan... read more...

add a comment |category: |Views: 2

tags: another

Multilingual website in asp.net(hemantg.blogspot.com)

submitted by hemantghemantg(145) 6 months, 29 days ago

While its neither new nor overly complex to implement multiple languages in ASP.net, it can be at times confusing and at times bit over the top in certain scenarios. ASP.net provides resource files which can be used to update the content based on browser language choice. The other option is to have a button or user choice saved in the database which is picked up as soon as user logs in. read more...

add a comment |category: |Views: 3

tags: another

calling Javascript methods on updatepanel events(hemantg.blogspot.com)

submitted by hemantghemantg(145) 6 months, 29 days ago

Recently came up with a scenario where I need to call a Javascript function to update a label with client side time on auto save, while auto saving was working fine, the only issue was capturing the time, since the label was updated at server we would end up with server time, so the do get client side time the option is to call a JS function at end request of update panel now the problem, there are multiple update panels on the page how do we read more...

add a comment |category: |Views: 8

tags: another

ASP.Net Event Sequence(hemantg.blogspot.com)

submitted by hemantghemantg(145) 1 year, 5 months ago

Load event Sequence 1. Content page Load event. 2. Master page Load event. 3. Master page controls Load event. 4. Content page controls Load event. read more...

add a comment |category: |Views: 3

tags: another

Data Types in Sql Server 2008(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 5 months ago

Sharing basic datatype info read more...

add a comment |category: |Views: 2

tags: another

Benefits of Stored Procedures(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 5 months ago

One of the biggest advantages of using stored procedures over not using stored procedures is the ability to significantly reduce network traffic. And the more network traffic that can be reduced, the better the overall performance of your SQL Server-based applications. read more...

add a comment |category: |Views: 14

tags: another

Performance Optimizing SQL Server Stored procedure(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 5 months ago

some of the key features that can be easily implemented and made a habit during the course of deveopement that can in future boost your performance. read more...

add a comment |category: |Views: 17

tags: another

Very very good SQL Server analytical scripts(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 5 months ago

how to find out what script or procedure is consuming most memory or have the most reads, this help to identify the possible bottle necks in the website. read more...

1 comment |category: |Views: 15

tags: another

Resetting dotnetnuke password(hemantg.blogspot.com)

submitted by hemantghemantg(145) 2 years, 5 months ago

Resetting host and admin password via SQL script read more...

add a comment |category: |Views: 4

tags: another

UFRAME: goodness of UpdatePanel and IFRAME combined(codeproject.com)

submitted by oazabiroazabir(1805) 4 years ago

UFrame simulates the behavior of IFRAME on a DIV. Any page can be loaded inside a DIV and hyperlink navigation and form posts happen within the DIV. As a result, a regular page can start providing AJAX features without ever writing any AJAX code. ASP.NET MVC websites can now use UFrame instead of UpdatePanel. read more...

2 comments |category: |Views: 349

tags: another

Agile a new methodology(hemantg.blogspot.com)

submitted by hemantghemantg(145) 4 years ago

Agile a new methodology is a brief intro to agile read more...

add a comment |category: |Views: 1

tags: another

SharePoint Templates(hemantg.blogspot.com)

submitted by hemantghemantg(145) 4 years ago

I have recently started looking at share point as an alternate to custom coding . it is a great tool and provides great flexibility, though at times you feel lost but the end result is quite encouraging. Microsoft offers a host of free templates which can meet a vast range of requirements and with a bit of customization you are ready to roll. I see it as a great to ol for intranet based apps which are required from time to time. also with MS providing a host of templates it helps you provide a quick solution to the client which when custom coded could have taken months. Sharepoint Templates - Makes life easy read more...

add a comment |category: |Views: 9

tags: another

Measure the performance of QA(hemantg.blogspot.com)

submitted by hemantghemantg(145) 4 years, 1 month ago

My views on QA / Developer performance analysis read more...

add a comment |category: |Views: 5

tags: another

Build, Rebuild and compile(hemantg.blogspot.com)

submitted by hemantghemantg(145) 4 years, 1 month ago

brief description about Build, Rebuild and compile read more...

add a comment |category: |Views: 2

tags: another

Top 10 Best Practices for Production ASP.NET Applications(daptivate.com)

submitted by kbeyerkbeyer(445) 4 years, 3 months ago

A list of some things to pay attention to when dealing with production ASP.NET applications. read more...

1 comment |category: |Views: 175

tags: another

Retrieving Distinct string values without using Distinct in T-SQL(hemantg.blogspot.com)

submitted by hemantghemantg(145) 4 years, 10 months ago

Recently I came across a scenario where I needed to get distinct string values sorted by date time without sorting it in alphabetical order. I was dumb struck to find none of the SQL Server methods provided direct support to do so. I finally came up with the below mentioned process to achieve this read more...

add a comment |category: |Views: 175

tags: another