I have script sample but i don't understand
here is my script:
<%
dtrfirstnum = “35”
intsecondnum = 40
strthirdnum = “50”
inttotal = strfirstnum * intsecondnum
Response.write inttotal
%>
what is different between "35" and 35.. for example:
intsecondnum is "40" and strthirdnum="56"
response.write intsecondnum * strthirdnum
and
intsecondnum is 40 and strthirdnum="56"
response.write intsecondnum * strthirdnum
OR
response.write intsecondnum + strthirdnum
________________________________________________________
can you please explain me what is differences between "" and without "". how does this caculation works? what is different between them?
thanks
here is my script:
<%
dtrfirstnum = “35”
intsecondnum = 40
strthirdnum = “50”
inttotal = strfirstnum * intsecondnum
Response.write inttotal
%>
what is different between "35" and 35.. for example:
intsecondnum is "40" and strthirdnum="56"
response.write intsecondnum * strthirdnum
and
intsecondnum is 40 and strthirdnum="56"
response.write intsecondnum * strthirdnum
OR
response.write intsecondnum + strthirdnum
________________________________________________________
can you please explain me what is differences between "" and without "". how does this caculation works? what is different between them?
thanks