Hi, i am using aspx page, not html file.
Sutheesh
Hi, i am using aspx page, not html file.
Sutheesh
function callreg() { alert("hello"); var shl = new ActiveXObject("WScript.Shell"); shl.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\2104", 0, "REG_DWORD"); } This script is correctly working in local system. When i access this with remote system, it shows an error automation server cannot create object. Can any one help me to solve it??? Thanks in advance
Sutheesh
function callreg() { alert("hello"); var shl = new ActiveXObject("WScript.Shell"); shl.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3\\2104", 0, "REG_DWORD"); } This script is correctly working in local system. When i access this with remote system, it shows an error automation server cannot create object. Can any one help me to solve it??? Thanks in advance
Sutheesh
In my project correctly working in IE6. In IE7, while I open any new window using(window.open()), it shows the address.(i give location=no) Can any one help me how to diable the address bar?
Sutheesh
Can any one help how to validate system's user name and password?
Am using asp.net login controls for my page. Is it possible to find the user who closes the page without logout?
Hi, I created one Portal, i want to display current login member details. Can any one help me?
Thanks Navaneeth, Finally i got the answer by ur clue, i saw the page source it was different from the id. It includes usercontrolname_id. Now my user control is working fine.... Thanks alot..
Thanks for ur reply friend. The page cannt find document.getElementById(cell), because it (cell) is created in usercontrol.
Hi, i created one user control, in that control i called function. But it is not working when i used that user control in my form. But the same coding can be working in pages. Can any one help me? In my user control i created one table like this,
I write the code in server side as follows, HtmlTableRow htr,htr1; HtmlTableCell htc; htr = new HtmlTableRow(); htc = new HtmlTableCell(); htc.InnerHtml = "Sutheesh Visible"; htr.Cells.Add(htc); SampForum.Controls.Add(htr); htr1 = new HtmlTableRow(); htr1.ID = "Hello"; htc = new HtmlTableCell(); htc.InnerHtml = "Sutheesh Invisible"; htr1.Cells.Add(htc); htr1.Style.Add("display", "none"); htr.Attributes.Add("onClick", "ShowHide('" + htr1.ClientID+ "')"); Ftable.Controls.Add(htr1); JavaScript: function ShowHide(cell) { alert(cell); if(document.getElementById(cell).style.display=="none") document.getElementById(cell).style.display="inline"; else document.getElementById(cell).style.display="none"; }
s