kcherupa

Stories submitted by kcherupa

Sql function to replace in HTML text without affecting HTML structure(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 8 months, 2 days ago

When we have a requirement to replace text within HTML content that is stored in DB column, if we use the sql inbuilt function "Replace" then there are chances to mess up the HTML tags and their attributes. This post shows how to write a sql function to replace text in HTML content without affecting the HTML elements and attributes. This function just replaces the text within HTML content and keeps the HTML structure as it is. read more...

add a comment |category: |Views: 5

tags: another

How to implement translation using Jquery(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 1 month ago

This post describes about Google translator API and it's pros and cons. It also describes about the jquery plugin for translator. read more...

add a comment |category: |Views: 9

tags: another

Sitefinity performance factor - script manager(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 3 months ago

This post explains how we can reduce the size of Sitefinity pages by removing the ScriptManager. This also works for any regular web application (without sitefinity). read more...

add a comment |category: |Views: 15

tags: another

Integrating audio recorder in website(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 6 months ago

One of our clients had a requirement having an audio recorder to be integrated with his website. He wanted record and playback features. This was challenging job to me and I did lot of research in this and finaly found one third party tool which serves exactly read more...

add a comment |category: |Views: 26

tags: another

Extending cookie expiration time in asp.net(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 6 months ago

Changing cookie expiration time is not straight forward. It is not as easy as setting the http cookie's property Expires to required value... read more...

add a comment |category: |Views: 14

tags: another

bubbling up events from child control to parent(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 11 months ago

It is a good practice to use user controls when same controls are repeated in many pages. But there are some cases where the user control has some controls which generate events and those need to be handled by the containing page/user control. For eample there is a button control in the user control and you want to do something in parent page/control when the button in user control is clicked... read more...

add a comment |category: |Views: 49

tags: another

How to implement paging with LINQ(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 1 year, 11 months ago

Before going into how paging is implemented with LINQ, Let's discuss the need for implementing paging. With large amounts of data, it is not a good practice to pull all records from database when you are showing a fraction of them in one page. It is always recommended to use data on demand approach. When you want to show first 20 records out of the search results then you must get the first 20 records from database and discard the rest. Similarly... read more...

add a comment |category: |Views: 37

tags: another

How to get sql server 2008 intellisense working for schema changes(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 1 month ago

The new feature "intellisense" added in sql server 2008 is making my life easier. And I am enjoying this feature a lot. But I noticed many times that when we make any changes to DB schema like creating / modifying database objects we don't notice the schema changes in intellisense in the same session. This made me too bad and many times I cursed Microsoft for this inclomplete feature. But after making some research on this, I have found the solution to get ... read more...

add a comment |category: |Views: 9

tags: another

Occasionally Connected Systems Sync Framework(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 1 month ago

Every one of us must have realized that there should be a system which allows us to work offline and online. Nowadays most of the people started using laptops and working remotely. So we got a need of a framework which lets the developers build applications to sync ... read more...

add a comment |category: |Views: 11

tags: another

How to install IIS 7.0 on windows server 2008(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 3 months ago

This explains how to install IIS 7.0 on windows server 2008 by adding web server role in service manager. read more...

add a comment |category: |Views: 5

tags: another

c# 4.0 new feature: named and optional arguments(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 3 months ago

This post explains the usage of c# 4.0's new feature "named and optional arguments". This feature is mostly useful when we have methods defined with large number of parameters. It is hard to remember the list of parameters in order. So by using named arguments we can pass the arguments in any order. And also many times it is possible that, we don't want to pass all arguments but use default values. This requirement is replaced by "optional parameters" feature. read more...

add a comment |category: |Views: 26

tags: another

DNK Blog is Up(blog.dotnetkicks.com)

submitted by kcherupakcherupa(295) 2 years, 4 months ago

tftgt read more...

add a comment |category: |Views: 8

tags: another

Get multiple result sets from DB using IMultipleResults in linq c#(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 4 months ago

This post explains the usage of IMultipleResults in LINQ to get multiple result set from a single stored procedure read more...

add a comment |category: |Views: 222

tags: another

Solution to the problem with url encode(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 4 months ago

Explains the solution to the problem of not able to do proper url encoding read more...

add a comment |category: |Views: 15

tags: another

How to create a setup project to install windows services(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 4 months ago

This post clearly explains how to create a setup project in visual studio read more...

3 comments |category: |Views: 151

tags: another

How to create a windows service in dot net framework(cherupally.blogspot.com)

submitted by kcherupakcherupa(295) 2 years, 4 months ago

Explains detailed steps to create a windows service using visual studio read more...

1 comment |category: |Views: 277

tags: another