User Profile

Collapse

Profile Sidebar

Collapse
chamarajanaka
chamarajanaka
Last Activity: Aug 13 '11, 11:10 AM
Joined: Jul 25 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • chamarajanaka
    started a topic Using Bind Function

    Using Bind Function

    I need to Bind "JobRefNo" to the query string.Below binding gives an error.what is the correct way?

    Code:
    <asp:LinkButton ID="MoreLinkButton" PostBackUrl="/real/Coordinator/Home.aspx?JobRefNo="'<%# Bind("JobRefNo") %>' runat="server">Go To Job...</asp:LinkButton>
    Link Button is inside a DataList control.Error says "Call to Bind must be assigned to a property...
    See more | Go to post

  • chamarajanaka
    started a topic Visual studio class designer

    Visual studio class designer

    How can i model aggregation in VS 2008 class designer??
    See more | Go to post

  • chamarajanaka
    started a topic problem with sql table updation

    problem with sql table updation

    I have 2 tables
    Code:
    CREATE TABLE PODRAS_MS.tbl_FieldWorkers
    (
        [FWInsOnServerID]   INT             NOT NULL IDENTITY(1,1),
        [BaseStationID]     INT             NOT NULL,
        [RefID]         INT                     NOT NULL,
        [DisSubInsID]       INT             NOT NULL,   
        [FieldWorkerID]     CHAR(7)                 NOT NULL,
        [LastRecDate]       DATETIME                NOT NULL,
    ...
    See more | Go to post

  • chamarajanaka
    replied to Problem with Lists
    in .NET
    Exactly!! thanks for the reply. I've got it working...
    See more | Go to post

    Leave a comment:


  • chamarajanaka
    started a topic Problem with Lists
    in .NET

    Problem with Lists

    I have a List of integers

    Code:
    List<int> LI = new List<int>();
    i wants check whether a particular number exists in the list.if exists do a database updation else do a database insert

    Code:
    foreach (int IT in LI)
                {
               
                }
    can i do this inside the foreach loop or if not possible how to achieve this?????
    See more | Go to post

  • "Published Failed" when deploying ASP.NET web application

    I've developed a web application and when i try to publish it in to a folder in my local disk using the PUBLISH option in ASP.NET a error messages is showed at the bottom bar of visual studio "Published Failed" but i couldn't find the error and it doest not provide any error message other than "Published Failed". So is there a way to find the error
    See more | Go to post

  • Thanks for the replies problem was resolved by removing
    Code:
    CrystalReportViewer1.RefreshReport();
    See more | Go to post

    Leave a comment:


  • chamarajanaka
    started a topic Missing Parameter values in Crystal reports
    in .NET

    Missing Parameter values in Crystal reports

    When i run the page i'm getting a message showing."Missin g Parameter values" and want display the report. i've used following formula
    Code:
    Year ({tbl_DisasterRegistration.Date})  =  Year (CurrentDate)  - {?@YearCount}
    By right click on the report...Report->Selection Formula->Record

    my code is used in DropDownList1_S electedIndexCha nged

    Code:
    ReportDocument crystalReport = new ReportDocument();
    ...
    See more | Go to post

  • chamarajanaka
    started a topic Problem with GridView link button field
    in .NET

    Problem with GridView link button field

    I want to show the following data on a Gridview.

    Request ID
    Email
    Date
    User Type
    Status
    Status can be Active or Inactive according to the database value.if its Inactive user must be able to change the status to Active so that the database value will be updated.I couldn't implement this Status field as a linkbutton field.following is the code that i'm currently using to bind the data to GridView.Can...
    See more | Go to post
No activity results to display
Show More
Working...