User Profile

Collapse

Profile Sidebar

Collapse
jawaharks
jawaharks
Last Activity: Apr 2 '09, 04:19 AM
Joined: Jan 25 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jawaharks
    replied to UpdatePanel stops.......
    I got the solution

    Thanks friend,
    It works.......... ..
    See more | Go to post

    Leave a comment:


  • jawaharks
    started a topic UpdatePanel stops.......

    UpdatePanel stops.......

    Hi friends,
    I am having a page which hits the server and performs some complex tasks, which takes even 15 - 20 mins. I have an updatepanel in my page. The updateprogress stays in the page for 60 seconds only. After that it stops. But the task was still happening in the server. But no progress in the UI. Can any one help me in this.


    Regards,
    Jawahar
    See more | Go to post

  • jawaharks
    replied to GroupBox
    in .NET
    In asp there is no group box, but for some controls like radiobutton you have a attribute called group. There you can give same name for the controls that you want to group together.
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to webmsgbox
    in .NET
    you can write a javascript for that.. it will give the confirm() method, which pops a window with a messaage and twoo buttons(ok and delete).
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to Form View
    in .NET
    There is a property called InsertItem in formview. In the cs page
    give

    FormView1.Inser tItem(true);

    Now you can insert. I basically connect using tableadapters-->Datasource-->Formview...
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to ASP send email
    In c#,


    Add this namespaces

    using System.Web.Mail ;
    using System.Net.Mail ;


    now,

    SmtpClient objSmtpClient = new SmtpClient();
    objSmtpClient .Send(txtFromAd dress.Text, txtToAddress.te xt, txtSubject.Text , txtBody.Text);



    Before this you have to edit the web.config page in the system.net...
    See more | Go to post

    Leave a comment:


  • HI,
    you can also set the editrowstyle and SelectedRowStyl e attribute for the gridview...
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to hi
    in .NET
    Friend,

    you can access the html control in your cs page, only if you specify the attribute runat="server" for your html control. It will work if you give runat.
    have a try.........
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to c# help needed
    in .NET
    I don't think its possible.....th e standards will be lost if we do like that......
    See more | Go to post

    Leave a comment:


  • jawaharks
    replied to how to make a particular column disable
    in .NET
    Durga,

    You place the controls that you want to edit in the EditItemTemplat e and place the controls that you are not editing or you want to disable in the ItemTemplate. Now that particular control will be disabled during the edit mode of the grid.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...