Hi... I tried but it is not wkg
Hemalatha A M
Posts
-
Textbox Focus Problem -
Textbox Focus ProblemThen what is the solution for this problem.. I have tried hardly for this.. The cursor alone is not placing inside textbox.. But all the other work like after entering any text and press enter it is getting save in gridview... This problem is occuring only in IE
-
Textbox Focus ProblemHi, Am having textbox in Gridview.I need to set the focus(i.e. the cursor should place inside textbox) when add link button is clicked. For this i have used java scipt. function Click_Enter(CID,event) { var key; key=(event.which) ? event.which : event.keyCode; if(key==13) { document.getElementById(CID).focus(); } return true; } And in code behind of link button click event ImageButton ibtnSave = (ImageButton)gvBillingType.FooterRow.FindControl("ibtnSave"); TextBox txtAddcontrol = (TextBox)gvBillingType.FooterRow.FindControl("txtFooterBillingType"); Page.RegisterStartupScript("SetFocus", "document.getElementById('" + txtAddcontrol.ClientID + "').focus();"); txtAddcontrol.Attributes.Add("onkeydown", "javascript : return Click_Enter('" + ibtnSave.ClientID + "',event);"); this code is Wkg in Mozila.. but in IE it is not WKG.. Pls anyone help me fast.
-
How to get control id which is in edititemtemplateHi, For JS i need the image button id which is in EditItemTemplate.I got the id which is in FooterTemplate by using gvDataBase.FooterRow.FindControl("ibtnSave").UniqueID Pls anyone tell how to get that id..........
-
Html Editor for asp.net not supported by safari browserHi, I jst viewed it and took the id for html editor for ex: "ctl00_cphEBizMaster_txtMessage". And i try to assigned it to some string variable like String Message =Request.Form("ctl00_cphEBizMaster_txtMessage"); Am getting Error.....
-
Html Editor for asp.net not supported by safari browserI have designed html editor for asp.net. My problem is if i type any msg inside that html editor, and click save button, the text is not accepted and it shows alert msg..... But in other browser the text is accpted... Any Solution....
-
Html Editor dllHi.. I have to use html editor for my asp.net page. Pls tell any dll name for htmleditor. i have already used Winthusiasm dll... Is there any dll available other than it...
-
Bulk InsertHi i try to insert 195 countries at a time in sql. For that i have used BULK insert query. My Query is BULK INSERT hrmsuser.country FROM 'C:\data.txt'WITH ( DATAFILETYPE = 'char', FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' ) MYPROBLEM: Cannot bulk load. The file "C:\data.txt" does not exist. Pls Anyone Help Me........
-
Hi all !!! FreeTextBox not Suppoted by Safari Browser [modified]Am used html editor in asp.net. But while i click any item like Bold, or Italic and drag it will paste inside the editor. To avoid this i used FreeTextBox. But it is not Wkg in Safari browsers. Pls anyone help me!!!!!! :(
modified on Monday, April 20, 2009 9:41 AM