User Profile

Collapse

Profile Sidebar

Collapse
Habeebuddin
Habeebuddin
Last Activity: Nov 2 '06, 05:42 AM
Joined: Sep 8 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Habeebuddin
    replied to pls help me out
    in .NET
    If you are working within a LAN(I mean accessing the page from other computer within a LAN), we can specify the computername instead of IPAddress.

    for ex: http://Dev520/SampleProject/SamplePage.aspx
    Here 'Dev520' is a computer name.

    Hope this might be useful.
    See more | Go to post

    Leave a comment:


  • Habeebuddin
    started a topic Infragistics Web charts
    in .NET

    Infragistics Web charts

    Hi,
    I am using Infragistics Web chart in one of the applications. It is working fine on the localsystem. But When I tried to deploy it and run on other systems(even on local system), it is not displaying webcharts.

    So Please help me how to overcome this problem? What precautions need to be taken while deploying the application?

    Thanks in Advance...
    See more | Go to post

  • Habeebuddin
    replied to how to send values to other page
    in .NET
    Hi,
    You can use Sessions for maintaing state in between page visists. Put the value you want in the Report page, in a session and then u can retrieve it from Report page.
    For ex:

    Session["userName"] = "root";

    in Report page:

    string strUser = Session["userName"].ToString();

    Hope this might be useful....
    See more | Go to post

    Leave a comment:


  • Habeebuddin
    replied to need immediate help
    in .NET
    Hi,
    You can impose that constraint of ensuring unique users in the application code itself. Check whether the name entered in the textbox(usernam e) is already exists in the table(in database) by parsing through the records...

    for ex:
    .....
    .....
    dataAdapter.Fil l(dataSet);
    int userFound=0;
    int i=0;
    for(i=0;i<dataS et.Tables[0].Rows.Count;i++ )
    {
    ...
    See more | Go to post

    Leave a comment:


  • Habeebuddin
    started a topic DisablingBback Nav
    in .NET

    DisablingBback Nav

    Hi,
    I want to disable the browser's back navigator button in all the pages of an application. How can I do that?
    See more | Go to post

  • Habeebuddin
    replied to I am unable to connect to the database.
    in .NET
    Instead of using server=MUM2\SQL SERVER, write the follwing


    data source=MUM2\SQL SERVER
    See more | Go to post

    Leave a comment:


  • Habeebuddin
    started a topic Disabling ASP.Net Server controls

    Disabling ASP.Net Server controls

    Hi,
    I want to disable Server controls, and enable them when sertain event occurs? How should I proceed?
    See more | Go to post

  • Habeebuddin
    started a topic Web service call method?
    in .NET

    Web service call method?

    Hi,

    What is the default mode(Synchronou s or Asynchronous) used when calling a web service method?
    See more | Go to post
No activity results to display
Show More
Working...