Search

You searched for the word(s): userid:700768

Matching Posts

  • How to handle sql server culture ?

    Hi All, I want bulid simple multi language website using sql server.I have given user option to choose culture by selecting culture from dropdown.For displaying all controls labels and headers I am going to use languange specific resource files. I have following questions. Suppose user selected culture as "french" from dropdown which is applied to current request thread,now all headers will be from french resource file. Suppose user enter value from one of the input box as "100,30"
    Posted to Localization (Forum) by suyog.dabhole on 8/17/2009
  • Want regex for decimal upto 4 places on right and 15 places on left.

    Hi all, I am using textbox for displying decimal number.I want apply following proper validation to it 1) It should be between 0 to 100. 2) It should allow only 4 decimal places and 15 digits to left of decimal point. 3) Should not accept char values. 4) All these should happen while use is entering the value in text box(i.e key press event). Kindly provide regex or javascrit for it. Thanks in advance.
  • How to disable/enable asp check box ?

    Hi All, I am using 2 asp checkbox in my web form.I want to do disable/enable of second check box on the click of first check box by using java script.On page load by default second check box is disabled as follows. ckb1.Enabled = false ; I am using following javascript. <script language="javascript"> function MakeDisableEnabled(eventCheckBoxId, beoCheckBoxId) { beoCtrl = document.getElementById(chk2); if (beoCtrl != null) { eventCtrl = document.getElementById(chk1); if (eventCtrl
    Posted to Web Forms (Forum) by suyog.dabhole on 4/20/2009
  • how to improve performance of drop down list box ?

    Hi All, I have page which contains one DropDownList.I am binding this control on page load at very first time. My drop down contains 8000 values. //FontNames_dd.DataSource = dtRooms; //FontNames_dd.DataTextField = "RoomNumber"; //FontNames_dd.DataValueField = "RoomID"; //FontNames_dd.DataBind(); On SelectedIndexChanged event of drop down list box I am updating some below that drop down.Which is taking very less time but for selecting item is taking very large time. I also tried
    Posted to Web Forms (Forum) by suyog.dabhole on 2/5/2009
  • Re: How to improve performance of grid view?

    How to bind only changed rows to grid view? Currently I am binding whole table for each asyncronus post back.How to prevent that?
  • Re: How to improve performance of grid view?

    Do you have any sample code for it? It will be helpful for me.
  • How to improve performance of grid view?

    Hi All, I am using grid view in aspx page.I am binding 7000 rows to gridview with paging 100 rows per page ,total 70 pages.I am doing sorting in grid view.I am using ajax for it. I am showing some real time data in grid view and I am using asyncronus timer for updating grid view.It is updating grid view per 4 seconds. Ajax is only updating grid view and not whole page. Can any body give some performance tips for it.
  • error in wcf

    HI All, I am getting following error while sending large object. An unhandled exception of type 'System.ServiceModel.CommunicationException' occurred in mscorlib.dll Additional information: The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error. I am using following settings. [ ServiceBehavior (ConcurrencyMode = ConcurrencyMode .Reentrant, InstanceContextMode = InstanceContextMode .Single, MaxItemsInObjectGraph
    Posted to ASP.NET AJAX Networking and Web Services (Forum) by suyog.dabhole on 1/28/2009
    Filed under: WCF ajax "Invalid Control Characters" CommunicationObjectAbortedException "System.ServiceModel.InstanceContext Aborted"
  • Re: provide best solution for this grid view problem?

    Hi rptHarry, Thanks for reply but I have issue with performance ,I already successfully developed that page.Now I want data at real time that means per second and say for 1000 rows in grid that means each time I have to bind entire datatable to grid . Is any way to avoid it ? Is any way to bind only changed rows to already binded grid view? Currently by using ajax I am only updating grid view instead of whole page load. Is there any feature to refresh only perticular rows(changed rows in datatable
    Posted to Data Presentation Controls (Forum) by suyog.dabhole on 11/11/2008
  • provide best solution for this grid view problem?

    Hi All, I have one .aspx page which show data for rooms in grid view.My web site is for hotel which shows all rooms data in grid view .Say hotel contains 100 rooms then my grid view shows 100 rows in grid view .Now in grid I have columns like room status locked or unlocked( I shows image here),temperature and various alarms(door open etc.). Now all these columns update at real time meaning that when I locks the room ,lock status updates in database similarly for temp. and all these. I am using AJAX
    Posted to Data Presentation Controls (Forum) by suyog.dabhole on 11/11/2008
Page 1 of 21 (202 items) 1 2 3 4 5 Next > ... Last »