hi guys following sample will help for set iframe content controls value from Parent page
Parent page
-----------
..body onload="setiframevalues()"/..
function setiframevalues() {
window.frames[0].document.getElementById('txtname').value = "Welcome";
window.frames[0].document.getElementById('txtname2').value = "Manikandan";
}
iframe calling page Sample
----------------------------
Name
.....input id="txtname" type="text" ...
name2
...input id="txtname2" type="text"...
Friday, February 25, 2011
Saturday, February 12, 2011
Sql Server Start /Stop Services using bat file
how To prepare Bat file for Starting and stopping sql server Services
1)For Starting Sql Server Services
Create the Notepad File
NET START MSSQL$SQLEXPRESS
Save as *.Bat File
1)For stopping Sql Server Services
Create the Notepad File
NET STOP MSSQL$SQLEXPRESS
Save as *.Bat File
Happy Coding....
1)For Starting Sql Server Services
Create the Notepad File
NET START MSSQL$SQLEXPRESS
Save as *.Bat File
1)For stopping Sql Server Services
Create the Notepad File
NET STOP MSSQL$SQLEXPRESS
Save as *.Bat File
Happy Coding....
Subscribe to:
Posts (Atom)