
Siddhesh
Members-
Content Count
49 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Siddhesh
-
Rank
Newbie
- Birthday 05/30/1983
Contact Methods
-
Website URL
http://
-
ICQ
0
-
Yahoo
siddhubabuin@yahoo.co.in
Profile Information
-
Location
Mumbai (Bombay)
-
Thanx buddy,Thanks for the explanation...the solution works for me..thank
-
I have some problem in parseInt property.....i have a variable temp..temp = '08';when I try the following codealert(parseInt(temp));it gives me value 0any solution?????and why it is so????
-
Is this the thing u required??<%dim name name = request.form("name")if name = "" then response.redirect = ("error.asp?name_null")ElseDim conn Dim rs Set Conn = Server.CreateObject("ADODB.Connection")conn.Provider="Microsoft.Jet.OLEDB.4.0"conn.Open(Server.Mappath("/webdata/atc.mdb"))set rs = Server.CreateObject("ADODB.recordset") RS.open "reg",Conn,2,2rs.AddNewrs.Fields("Name") = Request.Form("name")rs.Updaters.CloseSet rs = NothingSet Conn = Nothingresponse.redirct="confirm.asp"end if %>
-
Your aim of answer is Perfect, But the querry is giving me error as"'Initcap' is not a recognized function name."Can U help me?
-
Thanx, that could be a solution.But I don't want to make any site, but only data-cleaning.Can I do it?Any other solution? I m Using SQL 2000
-
Hi,I have a table Student With Column Student NameI want to do is thatThe Names Starting with 'S' , should start with 'K'e.g Students names areSid, Subbu, Sigma, suki..Then should be convert toKid, Kubbu, Kigma, Kuki....Thanx,Waiting...
-
U can call function on OnMouseOver event of that element.and U can refer an element by its id as getElementById("listone").class = "liststyleon" / "liststyleoff";
-
in The OnClick event of the link, or create a button, and onClick of that button u can call this function.
-
I think u r taking about the functionwindow.print();
-
try This<HTML> <HEAD> <script> function Fn_Click() { document.forms(0).Submit.disabled = true; } </Script> </HEAD> <BODY> <Form> <Input Type="Button" Name="Submit" Value="Submit" OnClick="Fn_Click();"> </Form> </BODY></HTML>
-
I m not giving u the perfect solution but you can try doing something like....For The Textarea on keypress event call a function.If The Key pressed is ENTER then add that element into a javascript aray.last element u can get by searching last and 2nd last Enter..This is the logic according to me.there may be better way.
-
Is this the thing you want?? <html> <head> <script type="text/javascript"> function disp_prompt() { var name=prompt("Please enter your name","") var Age=prompt("Please enter your Age","") if (name!=null && name!="") { if (Age != null && Age != "") { document.write("Hello " + name + "! Your age is "+ Age); } } } </script> </head> <body> <form> <input type="button" onclick="disp_prompt()" value="Display a prompt box"> </form> </body></html>
-
This may help uSelect IP from ReferralWhere IP Not In(Select IP from Robots)
-
Can you repeat the question in more simple wayWhat type of option you r talking aboutCheckBoxes,Radio buttons,Multiple selection Dropdowns,or List?By the way the check can be done using javascript in your code