User Profile

Collapse

Profile Sidebar

Collapse
raam
raam
Last Activity: Sep 30 '08, 07:13 AM
Joined: Jun 16 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • raam
    started a topic List box
    in .NET

    List box

    hi

    I have a list box with some country names from database.
    when i click search button the "country" list selecteditem should be selected.
    but it is not.
    here is my code where iam using a stored procedure which is outputting 3 tables simultaneously.
    the list box of country is 3rd table that is table[2]

    Code:
    if (objDataSet.Tables[1].Rows.Count > 0)
                    {
    ...
    See more | Go to post

  • raam
    replied to dropdown on selectedindex changed event
    in .NET
    Code:
      public void Getprovidernames()
        {
            WorldMedicalNetwork.BL.DBN_BL objBL = new WorldMedicalNetwork.BL.DBN_BL();
            WorldMedicalNetwork.Entities.DBN_En objBE = new WorldMedicalNetwork.Entities.DBN_En();
            DataSet objDataSet = new DataSet();
            objBE.Country = ddlcountry.SelectedValue.Trim().ToString();
            objDataSet = objBL.Getprovidernames(objBE);
            ddlprovidername.DataSource
    ...
    See more | Go to post

    Leave a comment:


  • raam
    started a topic dropdown on selectedindex changed event
    in .NET

    dropdown on selectedindex changed event

    hi,

    i have a dropdown for country names.
    when i select a country related records must display in another dropdown(provid er).
    upto this it's working fine.
    But when "provider" dropdown's item is selected and search button is clicked,the dropdown again pointing to 0th index record and a datagrid of same record.

    can any one suggest me where the mistake gone.

    thanks & regards,...
    See more | Go to post

  • raam
    started a topic sql query out of range datetime value

    sql query out of range datetime value

    create proc getproviders
    as
    begin
    select ProviderType,Pr oviderTypeId,Pr oviderName,City ,State,Country,
    StagingName,pro viderCode,conve rt(varchar(10), Agreement_endda te,101)Agreemen t_enddate from provider
    join stagingMaster on
    stagingMaster.S tagingId = provider.Stagin gId
    where isDate(Agreemen t_enddate) = 1 and convert(datetim e,Agreement_end date,101)...
    See more | Go to post

  • raam
    replied to Disabling back/forward buttons of Browser
    in .NET
    Thank you very much.
    See more | Go to post

    Leave a comment:


  • raam
    started a topic Disabling back/forward buttons of Browser
    in .NET

    Disabling back/forward buttons of Browser

    hi,

    I have an applciation where when i click on "Logout" should disable back button of browser.The page redirects to defaultlogin screen.There the buttons should get disabled.
    Can any one expalin me the procedure.

    Thanks & Regards,
    Raam.
    See more | Go to post

  • Error in C# saying directory not being configured as an application in IIS

    Hi,
    Iam facing this problem.can you help me out

    It is an error to use a section registered as allowDefinition ='MachineToAppl ication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.


    Thanks,
    Raam.
    See more | Go to post

  • raam
    replied to Validation in ajax
    in .NET
    I got it.

    add validation summaries for different tabs.
    if 6 tabs 6 validations summaries.
    Next add attribute "validationgrou p" for required field validators and textbox,dropdow n controls etc including button which fires validations.

    Then each tab gets validated seperately.

    Thank you.
    See more | Go to post

    Leave a comment:


  • raam
    started a topic Validation in ajax
    in .NET

    Validation in ajax

    Hi,
    I have ajax tab container with 6 tabs in it.
    I need to validate each tab contents separately and the validtaion summary must be separate for each tab.
    i cannot do that only one summary is being accesed.
    i also tried with validationgroup .
    Finlly i want each tab content to be validated and the content should accept the inputs.If any errors the message must display in summary separately.

    Here are...
    See more | Go to post
    Last edited by gits; Jul 29 '08, 07:58 AM. Reason: added code tags

  • raam
    replied to hi needed help in a query
    ya i have done it.but no result as such a way....
    See more | Go to post

    Leave a comment:


  • raam
    started a topic hi needed help in a query

    hi needed help in a query

    hi iam raam


    select count(*) as [No of Callers] from
    (select empcode,empname ,count(*) as [No of Calls],convert(varcha r(10),details.L ogintime ,101) as Date
    from details join employee on employee.empid = details.empcode
    where employee.Permis sion <> '1' and details.Loginti me between '06/10/2006' and '06/11/2006'
    group by empcode,empname , convert(varchar (10),details.Lo gintime ,101))e
    ...
    See more | Go to post
No activity results to display
Show More
Working...