Jump to content

Siddhesh

Members
  • Posts

    49
  • Joined

  • Last visited

About Siddhesh

  • Birthday 05/30/1983

Contact Methods

  • Website URL
    http://
  • ICQ
    0
  • Yahoo
    siddhubabuin@yahoo.co.in

Profile Information

  • Location
    Mumbai (Bombay)

Siddhesh's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Thanx buddy,Thanks for the explanation...the solution works for me..thank
  2. 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????
  3. Siddhesh

    form validation

    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 %>
  4. 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?
  5. 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
  6. 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...
  7. 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";
  8. in The OnClick event of the link, or create a button, and onClick of that button u can call this function.
  9. I think u r taking about the functionwindow.print();
  10. Siddhesh

    button

    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>
  11. 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.
  12. Siddhesh

    union all

    Try thisSelect *From (SELECT E_Name FROM Employees_Norway UNION ALL SELECT E_Name FROM Employees_USA) Table_AliasOrder By E_Name
  13. 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>
  14. Siddhesh

    Trimming a Table

    This may help uSelect IP from ReferralWhere IP Not In(Select IP from Robots)
  15. 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
×
×
  • Create New...