Feeds:
Posts
Comments

Archive for February, 2007

       Hi, You all have observe that when we use validation summary, it takes some extra space as shown below.

Fig – (1) Extra space in validation summary.
       You can remove extra space shown in fig – (1) by using style sheet. Below is the code.
<style type=”text/css”>
    UL
   {
          margin: 0 ;
          padding:5px;
   }
</style>
Fig – (2) [...]

Read Full Post »

              I have to work with google map in my current project. I search on net for the documentation of the API. Google has given really good exaples how to use that. However, everything is done using javascript. I was searching for the control that allow me to do all this at code behind. I found [...]

Read Full Post »

         Few days ago, in my blog(http://chiragrdarji.wordpress.com/2007/02/19/split-function-in-sql/)  I mentioned how to pass and use multiple values in single parameter in SP. I have mentioned that you can use XML format to do the same. Let me show you how to do that.
         Cionsider that you have to delete 5 rows from table and you have value of [...]

Read Full Post »

         I have sotnet 1.1 and 2.0 both are installed on my machine.  When I create new asp.net web project in vs 2003 and tried to run it, it gives an error “unable to start debugging on server.”, the call stack shows an error mentioned in title. This is the case for all VS 2003 [...]

Read Full Post »

Split function in SQL

          I was working at home and extending a gridview control with some extra features I required. I have added one column with checkbox for multiple delete. To delete multiple records I need to pass either multiple ID to SP and delete all or can pass each ID one by one to SP.
        I passed all ID [...]

Read Full Post »

        I was serching for good material to learn cotnet 3.0. I found the good link which allows to download PPT file. Below is the link,
        http://www.dotnet-university.com/

Read Full Post »

            As we all knows .NET support side by side execution of multiple versions of component. In most cases, updating a component is simple.However, even in the .NET world, it is possible to break assembly binding when you update a component.  One achieve that control is the publisher policy assembly.
What is a publisher policy assembly?
                 A [...]

Read Full Post »

       In my recent interview, a well known company in ahmedabad having branches in all over India, I was asked to write a programm. I have to swap the values of three variables without using fourth varable.  I found it really triky. I will first explain this with two variables and than show for three variables in [...]

Read Full Post »

         In my recent project, we have  to send an email to client when his/her subscription is about to complete. For this we need to check the database daily at and have to send an email to related client regarding their subscription end date. The simplest idea is to create the job for this task, [...]

Read Full Post »

      In my current project, I have to display a grid which has Radio button in each row and user can select one radio button. The task was simple, according tome. I took Template Field and place radio button in item template. I set “GropName”  property to “Commom”.  According to me its enough and now [...]

Read Full Post »

Older Posts »