User Profile

Collapse

Profile Sidebar

Collapse
nitindel
nitindel
Last Activity: Sep 26 '08, 09:08 AM
Joined: Dec 18 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • nitindel
    started a topic Gridview Problem
    in .NET

    Gridview Problem

    Hi All,

    Please tell me any good site for Gridview control.(not for datagrid).

    I am facing error in fetching the values of the Bound columns in the gridview:

    lease tell me how should i fetch the value..of a bound column..??

    Below is the code.:

    Code:
    <asp:GridView ID="gvOU" runat="server" AllowPaging="True" AllowSorting="True"
    ...
    See more | Go to post
    Last edited by kenobewan; Aug 11 '08, 12:34 PM. Reason: Please use code tags

  • nitindel
    replied to Suffix in dates
    Thanks a lot..My dear..!! It worked..

    Also..tell..Wha t if it is not a date and a simple number field more than 30 or 31 ...

    Waiting for the reply...!!

    Thanks ,
    Nitin Sharma...
    See more | Go to post

    Leave a comment:


  • nitindel
    replied to Suffix in dates
    Hi Dear..
    Thank you....

    I am using the query sent by u...but m having problem in retrrieving the date as like ur query is returning...
    I have a date field in the table with datetime as a datatype and i have replaced the Getdate() function with (Select date from tablename)..tha t is it....


    Please tell what all i have to change....

    My table name is XYZ
    My field name is Date.....
    See more | Go to post

    Leave a comment:


  • nitindel
    started a topic Suffix in dates

    Suffix in dates

    Hi All,
    I want to add Suffix in dates like nd,st,rd,th to dates like 2,1,3,4 respectively... ..

    What is the function used in Sql Server and oracle both??

    Thanks & Regards
    Nitin Sharma
    Software Engineer
    .Net Technologies
    See more | Go to post

  • nitindel
    started a topic Order of Triggers in SQL Server

    Order of Triggers in SQL Server

    Hi All,
    Please le tme know how do we set the order of Triggers to be fired ..in the SP sp_settriggeror der....??

    Do provide me the URL of the detailed article on that,if any...

    Thanks & regards
    Nitin Sharma
    Software Engineer
    .Net Technologies
    See more | Go to post

  • nitindel
    started a topic How are parameters passed in Triggers?

    How are parameters passed in Triggers?

    Hi All,
    May i know how do we pass parameters in Triggers and if no parameters are passed then how they get fired...??

    Thanks & Regards
    Nitin Sharma
    See more | Go to post

  • Number of Queries in Stored procedures...in SQL Server

    Hi All,
    Greetings of the day..!!

    Do we have any limit of the queries inside the stored procedure??

    If yes,then what is the limit???

    Thanks & Regards
    Nitin Sharma
    Software Engineer
    .Net Technologies
    See more | Go to post

  • nitindel
    started a topic IT Market slump

    IT Market slump

    Hi All,
    As heard there has been a market slump in the IT Industry...
    Is it correct...?
    If yes then ...approximatel y...how much time will it take to be as normal as before???


    Thanks
    nitin sharma
    Software developer
    See more | Go to post

  • nitindel
    started a topic Abstract Class Vs Interfaces in C#
    in .NET

    Abstract Class Vs Interfaces in C#

    Hi All,
    Is Abstract class and Interfaces in C# are same then how and if they are different then how??


    Nitin Sharma
    Software Developer
    .Net Technologies
    See more | Go to post

  • nitindel
    started a topic Linq
    in .NET

    Linq

    Hi All,
    Greetings
    May i have an idea of What is LINQ and why it is used along with its advanages..?


    Nitin Sharma
    Software Developer
    .Net Technologies
    See more | Go to post

  • nitindel
    replied to SQL Query
    Actually i was using that query because i have to append the query and if condition ...
    the above query will return all the records like select * from emp but addding where alause is necessary to append it to the new query in If condition of my Code.


    Thanks a lot...

    Nitin Sharma
    Software Engineer
    See more | Go to post

    Leave a comment:


  • nitindel
    replied to SQL Query
    Select * from Emp where 1=1
    See more | Go to post

    Leave a comment:


  • nitindel
    started a topic Verticals & Horizontals

    Verticals & Horizontals

    Hi All,
    Please tell me that what do we mean by Verticals & horizontals in the Software Projects.

    Thanks,
    Nitin
    Software Engineer

    See more | Go to post

  • nitindel
    started a topic SQL Query

    SQL Query

    Hi All,


    What is the output of this SQL Query.??
    What does it Do....
    Do tell me other queries related like this Consttants...


    Thanks ,
    Nitin
    Software Engineer
    See more | Go to post

  • nitindel
    started a topic Enumerators in C#
    in .NET

    Enumerators in C#

    Hi All,
    May i have an in depth article of enumerators in C#..that explains the Enumerators in C# very precisely....


    Thanks,
    Nitin
    See more | Go to post
    Last edited by Plater; Apr 3 '08, 02:28 PM. Reason: removing BOLD, why do people DO that?

  • nitindel
    started a topic Return in C#
    in .NET

    Return in C#

    Hi All,
    I want to know that what does the rturn keywod do in C#??

    Also,
    What does Return(1),Retur n(0) and Return(-1) means in C#??




    Regards,
    Nitin Sharma
    Software Engineer
    See more | Go to post
    Last edited by Shashi Sadasivan; Apr 3 '08, 11:50 AM. Reason: removing unnecessary bold tags bolding the entire message

  • Closing Pop UP window automatically when Parent window is closed

    Hi
    Guys...


    I am looking for a functionality of closing the POP UP window that i have opened from a Parent window....Whenv er i Close the Parent window..


    I mean to say...
    Whenver i close the parent window ..the pop up shold also be closed automaticallly. ..

    Thanks
    See more | Go to post

  • nitindel
    replied to Check box Alert if only One check Box
    Yup..........!! !!!!!!!
    See more | Go to post

    Leave a comment:


  • nitindel
    replied to Check box Alert if only One check Box
    I am using Check box because i have a delete option also...which can select multiple records and delete them at one GO.......
    See more | Go to post

    Leave a comment:


  • nitindel
    replied to Check box Alert if only One check Box
    Hi ...
    Here is the Full Javascript code.......

    [code=javascript]function Edit()
    {
    var ctr=0;

    for (i=0;i<document .managecontribu tion.checkmanag e.length;++i)
    {
    if(document.man agecontribution .checkmanage[i].checked)
    {
    ctr=ctr+1;
    }

    }
    if (ctr<=0)
    {
    alert('Please Check the story to edit');
    ...
    See more | Go to post
    Last edited by acoder; Feb 22 '08, 08:00 AM. Reason: changed bold to code tags

    Leave a comment:

No activity results to display
Show More
Working...