473,732 Members | 2,227 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

javascript function not working when script "language" attribute is changed to "type"

vikas251074
198 New Member
When change the <script language="javas cript"> to <script type="text/javascript">, javascript function now works no more. Previously it was working. Javascript function is given below -
Expand|Select|Wrap|Line Numbers
  1. function log1()
  2. {
  3.   window.location="log1.asp"
  4. }
  5. function page1()
  6. {
  7.   window.location="page1.asp"
  8. }
and place where calling this function are below -
Expand|Select|Wrap|Line Numbers
  1. <font style="position:absolute;left:300; top:400">
  2.   <input type="button" style="width:100px" value="Login" onclick="log1()">
  3. </font> 
  4. <font style="position:absolute;left:300; top:450">
  5.   <input type="button" style="width:100px" value="Back" onclick="page1()">
  6. </font> 
Where is the problem?

Thanks and regards,
Vikas
Jun 4 '08 #1
13 1934
acoder
16,027 Recognized Expert Moderator MVP
Try using window.location .href.

Just a note: there's no need to use font tags. Replace them with div tags.
Jun 4 '08 #2
vikas251074
198 New Member
I changed the code as follows -

Expand|Select|Wrap|Line Numbers
  1. function log1()
  2. {
  3.   window.location.href="log1.asp"
  4. }
  5.  
  6.  
Still it is not working.


Should I not use <font> tag for placing text in browser? Is there any difference between <font> and <div> for placing text?

Thanks and regards,
Vikas
Jun 4 '08 #3
acoder
16,027 Recognized Expert Moderator MVP
Show the rest of your code.
Should I not use <font> tag for placing text in browser? Is there any difference between <font> and <div> for placing text?
The font tag is deprecated. You should use CSS for styling. Here you're not placing text within the font tags, you were just displaying buttons.
Jun 4 '08 #4
vikas251074
198 New Member
This is my complete code.


Expand|Select|Wrap|Line Numbers
  1. <title>Material Entry Form</title>
  2. <!--#include file="Hdr.asp"-->
  3. <script type="text/javascript" src="calendarDateInput.js">
  4. </script>
  5. <script type="text/javascript">
  6. function checkpn(pn)
  7. {
  8.   if (pn.value=="") 
  9.   {
  10.     pn.focus();
  11.     alert("Persons name must be entered");
  12.     return;
  13.   }
  14.   else if (!pn.value.match(/^[a-zA-Z .]*$/i))
  15.   {
  16.     pn.focus();
  17.     alert("Special characters are not allowed.");
  18.     return;
  19.   }
  20.   return;
  21. }
  22. function check_vech_no(vech_no)
  23. {
  24.   if (vech_no.value=="") 
  25.   {
  26.     vech_no.focus();
  27.     alert("Vehicle number must be entered");
  28.     return;
  29.   }
  30.   else if (!vech_no.value.match(/^[a-zA-Z0-9 ()-/]*$/i)) 
  31.   {
  32.     vech_no.focus();
  33.     alert("Special characters are not allowed.");
  34.     return;
  35.   }
  36.   return;
  37. }
  38. function checkdrn(drn)
  39. {
  40.   if (drn.value=="") 
  41.   {
  42.     drn.focus();
  43.     alert("Driver name must be entered");
  44.     return;
  45.   }
  46.   else if (!drn.value.match(/^[a-zA-Z /.]*$/i)) 
  47.   {
  48.     drn.focus();
  49.     alert("Special characters are not allowed.");
  50.     return;
  51.   }
  52.   return;
  53. }
  54. function checkpurpose(purpose)
  55. {
  56.   if (purpose.value=="") 
  57.   {
  58.     purpose.focus();
  59.     alert("Purpose must be entered");
  60.     return;
  61.   }
  62.   else if (!drn.value.match(/^[a-zA-Z0-9 ().-;/]*$/i)) 
  63.   {
  64.     drn.focus();
  65.     alert("Special characters are not allowed.");
  66.     return;
  67.   }
  68.   return;
  69. }
  70. function checkrecv(recv)
  71. {
  72.   if (recv.value=="") 
  73.   {
  74.     recv.focus();
  75.     alert("Received by must be entered");
  76.     return;
  77.   }
  78.   else if (!recv.value.match(/^[a-zA-Z ./]*$/i)) 
  79.   {
  80.     recv.focus();
  81.     alert("Special characters are not allowed.");
  82.     return;
  83.   }
  84.   return;
  85. }
  86. function log1()
  87. {
  88.   window.location= "log1.asp"
  89. }
  90. function page1()
  91. {
  92.   window.location="page1.asp"
  93. }
  94. function validate_form() 
  95. {
  96.   var val = true;
  97.   if(document.myform.per_name.value==''||document.myform.vech_no==''||document.myform.drv_name==''||document.myform.purpose=='')
  98.     {
  99.       val = false;
  100.       break;
  101.     }
  102.   }
  103.   return val;
  104. }
  105. </script>
Expand|Select|Wrap|Line Numbers
  1. <%
  2. Set CON1 = Server.CreateObject("ADODB.Connection")
  3. con1.open "Provider=MSDAORA.1;dsn=ops1;Password=gis;User ID=gis;Data Source=alpha2;Persist Security Info=True"
  4. SET RS1=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  5. Set CON = Server.CreateObject("ADODB.Connection")
  6. con.open "Provider=MSDAORA.1;dsn=ops;Password=op;User ID=outpass;Data Source=intradb;Persist Security Info=True"
  7. SET RS=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  8. SET RS2=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  9. SET RS3=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  10. SET RS4=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  11. SET RS5=SERVER.CREATEOBJECT("ADODB.RECORDSET")
  12.  
  13. ddd=DAY(DATE)
  14. mm=month(DATE)
  15. mmm=monthname(mm)
  16. yyy=year(DATE)
  17. if session("emp_no") = "" then
  18. %>
  19. <h2><font style="position:absolute;left:250;top:250">Session has been expired. Re-login please.</font></h2>
  20. <div style="position:absolute;left:300; top:400">
  21.   <input type="button" style="width:100px" value="Login" onclick="log1()">
  22. </div> 
  23. <div style="position:absolute;left:550; top:400">
  24.   <input type="button" style="width:100px" value="Exit" onclick="window.close();">
  25. </div> 
  26. <%else%>
  27. <body onload="document.myform.per_name.focus();" text=#000000 vLink=#330066 aLink=#666666 link=#000000 leftMargin=0 topMargin=0 marginwidth="0" marginheight="0">
  28. <form name="myform"  action="material.asp" method="post" onsubmit="return validate_form()" >
  29.   <table cellSpacing="0" cellPadding="0" width="780" height="500" border="0">
  30.     <tr>
  31.       <td vAlign="top" align="right" width="180" height="500"></td>
  32.       <td vAlign="top" align="left" width="600" bgColor="#ffffff">
  33.         <table cellSpacing="4" cellPadding="1" border="0" width="600" height="500" border="0">
  34.           <tbody bgcolor="cyan">
  35.             <tr>
  36.               <td colSpan="2">
  37.                 <font face="Arial, Helvetica, sans-serif" color="#330066" size="2">
  38.                   <center><h2><b>Preparation of Material Outpass</b></h2></center>
  39.                 </font>
  40.               </td>
  41.             </tr>
  42.             <tr>
  43.               <td colSpan="2"><font face="Arial, Helvetica, sans-serif" size="2"><b>*</b>Indicates mandatory fields</FONT></TD>
  44.             </tr>
  45. <%          
  46.             set rs4=CON.EXECUTE("SELECT MAX(GP_NO) FROM GPS")
  47.             GPNO=CDBL(RS4(0))+1
  48. %>           
  49.             <tr>
  50.               <td><font style="width:225" face="Arial, Helvetica, sans-serif" size="2"><b>*Gatepass Number</b></font></td>
  51.               <td>
  52.                 <font face="Arial, Helvetica, sans-serif" size="2"><%response.write GPNO%>
  53.                   <input type="hidden" size="30" name="gno" value=<%=gpno%>>
  54.                 </font>
  55.               </td>
  56.             </tr>
  57.             <tr>
  58.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>*Name of the person taking the <br>&#160 material out</b></font></td>
  59.               <td>
  60.                 <font face="Arial, Helvetica, sans-serif" size="2">
  61.                   <input type="text" size="30" name="per_name" onblur="checkpn(this)">
  62.                 </font>
  63.               </td>
  64.             </tr>
  65.             <tr>
  66.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>*Transaction Type</b></font></td>
  67.               <td>
  68.                 <select size="1" name="trans_type"> 
  69.                   <option value="RE" selected>Returnable</option> 
  70.                   <option value="NR">Not Returnable</option> 
  71.                 </select>
  72.               </td>
  73.             </tr>
  74.             <tr>
  75.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>*Issue Date</b></font></td>
  76.               <td><script>DateInput('issue_dt', true, 'DD/MM/YYYY')</script></td>
  77.             </tr>
  78.             <tr>
  79.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>&#160 Expected Return Date</b></font></td>
  80.               <td><script>DateInput('exp_ret_dt', true, 'DD/MM/YYYY')</script></td>
  81.             </tr> 
  82.             <tr>
  83.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>*Department </b></font></td>
  84.               <td>
  85. <%              
  86.                 dim v_sectcd
  87.                 dim v_sectname
  88.                 set rs = con.execute("select dept from emp where emp_no = '" & session("emp_no")&"'")
  89.                 rs.movefirst
  90.                 v_sectcd = RS("dept")
  91. %>              
  92.                 <font face="Arial, Helvetica, sans-serif" size="2">
  93.                   <select name="dept">    
  94. <%                  
  95.                     set rs1 = con1.execute("select sectcode, sect_des from fms.br_sec_mas_akd ")
  96.                     rs1.movefirst
  97.                     do while not rs1.eof
  98.                       if cint(v_sectcd) = cint(rs1("sectcode")) then
  99. %>                      
  100.                         <option value selected="<%=rs1("sectcode")%>"><%=rs1("sect_des")%></option>
  101. <%                      else%>
  102.                         <option Value="<%=rs1("sectcode")%>"><%=rs1("sect_des")%></option>
  103. <%
  104.                       end if 
  105.                       rs1.movenext
  106.                     loop
  107. %>                  
  108.                   </select>
  109.                 </font>
  110.               </td>
  111.             </tr>
  112.             <tr>
  113.               <td><font face="Arial, Helvetica, sans-serif" size="2"><b>*Firm Name </b></font></td>
  114.               <td>
  115.                 <font face="Arial, Helvetica, sans-serif" size="2">
  116.                   <SELECT NAME="FIRM_NAME">
  117. <%                  
  118.                     Set RS = CON.EXECUTE("SELECT Firm_name FROM firm ")
  119.                     Do While Not RS.EOF
  120. %>                    
  121.                       <option Value="<%=RS("firm_name")%>"><%=RS("FIRM_NAME")%></option>
  122. <%                    
  123.                       RS.MoveNext
  124.                     Loop
  125. %>                  
  126.                   </SELECT>
  127.                 </FONT>
  128.               </TD>
  129.             </TR>
  130.             <TR>
  131.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><b>&#160Vehicle No.</b></FONT></TD>
  132.               <TD>
  133.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  134.                   <INPUT size="10" name="vech_no" value="N/A" onblur="check_vech_no(this)">
  135.                 </FONT>
  136.               </TD>
  137.             </TR>
  138.             <TR>  
  139.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><B>&#160Driver Name </B></FONT></TD>
  140.               <TD>
  141.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  142.                   <INPUT size="30" name="drv_name" value="N/A" onblur="checkdrn(this)">
  143.                 </FONT>
  144.               </TD>
  145.             </TR>
  146.             <TR>
  147.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><B>&#160Purpose</B></FONT></TD>
  148.               <TD>
  149.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  150.                   <INPUT size="30" name="purpose" value="N/A" onblur="checkpurpose(this)">
  151.                 </FONT>
  152.               </TD>
  153.             </TR>
  154.  
Expand|Select|Wrap|Line Numbers
  1. <%          
  2.             EMPNO=SESSION("EMP_NO")
  3.             SET RS2=CON1.EXECUTE("SELECT C.DEPTCODE FROM M_FIX_EMPLOYEE A, BR_DEP_MAS_AKD B, BR_SEC_MAS_AKD C WHERE A.DEPT_CD=C.SECTCODE  AND B.DEPTCODE=C.DEPTCODE AND A.EMPNO ='"& EMPNO &"'")
  4.             DEPT=RS2(0)
  5.             SET RS3=CON.EXECUTE("SELECT EMP_NO FROM EMP WHERE DEPT='"& DEPT &"' AND OPLEVEL='A' ")
  6. %>           
  7.             <TR>    
  8.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><b>*Authorised By</b>(Employee No.)</FONT></TD>
  9.               <TD>
  10.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  11.                   <SELECT NAME="IAE">    
  12. <%                  
  13.                     Do While Not RS3.EOF
  14.                       SET RS5=CON1.EXECUTE("SELECT name FROM M_FIX_EMPLOYEE WHERE EMPNO ='"& rs3(0) &"'")
  15. %>                                                                           
  16.                       <option Value="<%=RS3(0)%>"><%=RS3(0)&"-"&rs5(0)%></option>
  17. <%                    
  18.                       RS3.MoveNext
  19.                     Loop
  20. %>                  
  21.                   </SELECT>
  22.                 </FONT>
  23.               </TD>
  24.             </TR>
  25.             <TR>
  26.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><b>*Prepared By </b>(Employee No.)</FONT></TD>
  27.               <TD>
  28.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  29.                   <INPUT size="10" name="pepd_by" readonly value=<%=session("emp_no")%>>
  30.                 </FONT>
  31.               </TD>
  32.             </TR>
  33.             <TR>
  34.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><b>*Recieved By </b></font></TD>
  35.               <TD>
  36.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  37.                   <INPUT size="10" name="recv_by" onblur="checkrecv(this)">
  38.                 </FONT>
  39.               </TD>
  40.             </TR>
  41.             <TR>
  42.               <TD><FONT face="Arial, Helvetica, sans-serif" size="2"><b>&#160Remarks </b></font></td>
  43.               <TD>
  44.                 <FONT face="Arial, Helvetica, sans-serif" size="2">
  45.                   <INPUT type="text" size="30" name="rem" value="N/A">
  46.                 </FONT>
  47.               </TD>
  48.             </TR>
  49.             <TR>
  50.               <td align="center" colSpan="3">
  51.                 <input type="button" style="width:100px" value="Back" name="back" onclick="page1()">
  52.                 <input type="reset" style="width:100px" value="Clear" name="clear">
  53.                 <input type="submit" style="width:100px" value="Submit" name="submit">
  54.               </td>
  55.             </TR>
  56.           </TBODY>
  57.         </TABLE>
  58.       </TD>
  59.     </tr>
  60.   </TABLE>
  61. </FORM><!--END MAIN FORM TABLE-->
  62. </BODY>
  63. <%end if%>
  64. </HTML>
  65.  
  66.  
Thanks and regards,
Vikas
Jun 4 '08 #5
acoder
16,027 Recognized Expert Moderator MVP
If I've understood correctly from your ASP code, if the session variable is not set, only the following code is displayed in the browser (after the script tags):
[html]<h2><font style="position :absolute;left: 250;top:250">Se ssion has been expired. Re-login please.</font></h2>
<div style="position :absolute;left: 300; top:400">
<input type="button" style="width:10 0px" value="Login" onclick="log1() ">
</div>
<div style="position :absolute;left: 550; top:400">
<input type="button" style="width:10 0px" value="Exit" onclick="window .close();">
</div> [/html]Is that correct?
Jun 4 '08 #6
vikas251074
198 New Member
Yes Sir, It is correct.

Thanks and regards,
Vikas
Jun 4 '08 #7
acoder
16,027 Recognized Expert Moderator MVP
In which case, your code would look like this:
Expand|Select|Wrap|Line Numbers
  1. <title>Material Entry Form</title>
  2. <!--#include file="Hdr.asp"-->
  3. <script type="text/javascript" src="calendarDateInput.js">
  4. </script>
  5. <script type="text/javascript">
  6. function checkpn(pn)
  7. {
  8.   if (pn.value=="") 
  9.   {
  10.     pn.focus();
  11.     alert("Persons name must be entered");
  12.     return;
  13.   }
  14.   else if (!pn.value.match(/^[a-zA-Z .]*$/i))
  15.   {
  16.     pn.focus();
  17.     alert("Special characters are not allowed.");
  18.     return;
  19.   }
  20.   return;
  21. }
  22. function check_vech_no(vech_no)
  23. {
  24.   if (vech_no.value=="") 
  25.   {
  26.     vech_no.focus();
  27.     alert("Vehicle number must be entered");
  28.     return;
  29.   }
  30.   else if (!vech_no.value.match(/^[a-zA-Z0-9 ()-/]*$/i)) 
  31.   {
  32.     vech_no.focus();
  33.     alert("Special characters are not allowed.");
  34.     return;
  35.   }
  36.   return;
  37. }
  38. function checkdrn(drn)
  39. {
  40.   if (drn.value=="") 
  41.   {
  42.     drn.focus();
  43.     alert("Driver name must be entered");
  44.     return;
  45.   }
  46.   else if (!drn.value.match(/^[a-zA-Z /.]*$/i)) 
  47.   {
  48.     drn.focus();
  49.     alert("Special characters are not allowed.");
  50.     return;
  51.   }
  52.   return;
  53. }
  54. function checkpurpose(purpose)
  55. {
  56.   if (purpose.value=="") 
  57.   {
  58.     purpose.focus();
  59.     alert("Purpose must be entered");
  60.     return;
  61.   }
  62.   else if (!drn.value.match(/^[a-zA-Z0-9 ().-;/]*$/i)) 
  63.   {
  64.     drn.focus();
  65.     alert("Special characters are not allowed.");
  66.     return;
  67.   }
  68.   return;
  69. }
  70. function checkrecv(recv)
  71. {
  72.   if (recv.value=="") 
  73.   {
  74.     recv.focus();
  75.     alert("Received by must be entered");
  76.     return;
  77.   }
  78.   else if (!recv.value.match(/^[a-zA-Z ./]*$/i)) 
  79.   {
  80.     recv.focus();
  81.     alert("Special characters are not allowed.");
  82.     return;
  83.   }
  84.   return;
  85. }
  86. function log1()
  87. {
  88.   window.location= "log1.asp"
  89. }
  90. function page1()
  91. {
  92.   window.location="page1.asp"
  93. }
  94. function validate_form() 
  95. {
  96.   var val = true;
  97.   if(document.myform.per_name.value==''||document.myform.vech_no==''||document.myform.drv_name==''||document.myform.purpose=='')
  98.     {
  99.       val = false;
  100.       break;
  101.     }
  102.   }
  103.   return val;
  104. }
  105. </script>
  106. <h2><font style="position:absolute;left:250;top:250">Session has been expired. Re-login please.</font></h2>
  107. <div style="position:absolute;left:300; top:400">
  108.   <input type="button" style="width:100px" value="Login" onclick="log1()">
  109. </div> 
  110. <div style="position:absolute;left:550; top:400">
  111.   <input type="button" style="width:100px" value="Exit" onclick="window.close();">
  112. </div> 
  113. </HTML>
  114.  
If you check the error console, there are errors in the validate_form() function. There's an extra bracket and break; is not needed.
Jun 4 '08 #8
vikas251074
198 New Member
Oh I am very sorry for my carelessness sir.

You are right sir.

Now it is working. I have to very utmost carefull while code in big programme.

Thanks and regards,
Vikas
Jun 4 '08 #9
acoder
16,027 Recognized Expert Moderator MVP
I would add one more thing: validate your markup using the W3C validator. At the moment, it's horribly invalid. Also, add a doctype to the top of your pages.
Jun 4 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

49
2859
by: Ville Vainio | last post by:
I don't know if you have seen this before, but here goes: http://text.userlinux.com/white_paper.html There is a jab at Python, though, mentioning that Ruby is more "refined". -- Ville Vainio http://www.students.tut.fi/~vainio24
6
14318
by: Web Developer | last post by:
Hi, I come across the term "type checking" very often in my readings on C++, and have never heard it in Java. Besides the simplistic answer that it checks the "type", what more does it mean? WD
1
3050
by: Dave | last post by:
Hi all, I was trying to make an image submit button with a rollover and discovered to my suprise that there is no way to access a form element of the "image" type. I tried specifying it by name and also by the elements array with no luck. Even weirder, I can sandwich an image button in between other input types and then write a script diplaying the contents of the elements array and it acts as if the image button does not exist at all!...
9
13426
by: David D. | last post by:
Does the file extension matter when including a JavaScript file in an HTML page? Normally, one would include a JavaScript file in an HTML page using <script src="foo.JS" type="text/javascript"> However, I have found that I can use an alternate file extension, such as <script src="foo.HTML" type="text/javascript"> It works fine with my IE 6 and Mozilla. Will it work with other browsers?
8
5903
by: David Cameron | last post by:
I noticed that using an HTMLInputRadioButton and specifying a value to be an empty string (""), this is overridden by ASP.Net which set the value of the control to be the same as the ID of the control. See the code below * Page.aspx: <%@ Page language="c#" Codebehind="Test.aspx.cs" AutoEventWireup="false" Inherits="Webspace.Test" %>
7
3288
by: RFS666 | last post by:
Hello, I would like to use variables with a type in jscript.NET. I declare them as follows: var x : double = 5.03; This doesn't work in my script, that I write to the page in codebehind with "registerClientScriptBlock" as follows: string script = "<script language=jscript>"; script += "function test()";
669
26075
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic paper written on this subject. On the Expressive Power of Programming Languages, by Matthias Felleisen, 1990. http://www.ccs.neu.edu/home/cobbe/pl-seminar-jr/notes/2003-sep-26/expressive-slides.pdf
9
4408
by: Steve | last post by:
Hi; I've being going through some legacy code on an old JSP site I have been patching. I noticed that when I save the JSP down to my PC as an HTML file I get this javascript error in IE 6 ( not in the latest Firefox ): "invalid character" The problem traces back to this line of code:
8
5065
by: howa | last post by:
Just found a funny things.. in HTML4's dtd, http://www.w3.org/TR/html4/strict.dtd language is not valid, i.e. <!ELEMENT SCRIPT - - %Script; -- script statements --> <!ATTLIST SCRIPT charset %Charset; #IMPLIED -- char encoding of linked resource --
0
8946
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
9307
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9235
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9181
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6735
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.