Recent content by n2casey

  1. n2casey

    Happy Birthday Kalpik!

    Happy Birthday!!! :)
  2. n2casey

    String match in javascript

    It can be done through regex also. Solution is just one line code. var val = document.getElementById('textbox1').value; var arr = val.split(/,/g); for(i=0; i < arr.length; i++) alert(arr[i]); In the above code, arr will be an array of...
  3. n2casey

    Happy Birthday connexion (22) and a_k_s_h_a_y (21)

    Happy B'day guys :-)
  4. n2casey

    Help Needed

    You can just edit the boot.ini file (present in windows drive) to remove the OS name.
  5. n2casey

    String matching in javascript

    Below is simple solution for it. function CheckValues() { var avalues=new Array(); var avalues[0]=document.getElementById('a1').value; var avalues[1]=document.getElementById('a2').value; var avalues[2]=document.getElementById('a3').value...
  6. n2casey

    passing value in php

    Well I don't have much idea in PHP but as I think, u can use query string for this. Something like on submission of delete.php, redirect to the same page & pass the query string like delete.php?event=delete&usertodelete=xyz and then in form load u can check the query string & call the delete...
  7. n2casey

    which is better for mid-level project ASP.NET or PHP

    ASP.NET is very easy coz it provides lot of things readymade. Also you will find C# much similar to C++ so it's very easy to understand. SQL Server is much better than MySQL in providing friendly environment for development. @Betruger Go for one in which you have better understanding. If...
  8. n2casey

    which is better for mid-level project ASP.NET or PHP

    Well PHP & ASP.NET both are as stable as Java. So there is no question of stability since it depends on developer whether he is able to develop a stable application or not. To develop application with ASP.NET is easy for beginners as compared to Java or PHP.
  9. n2casey

    which is better for mid-level project ASP.NET or PHP

    Then better to go for ASP.NET, with ASP.NET you can develop faster than PHP and also you will have more flexibility & ease in understanding and development.
  10. n2casey

    which is better for mid-level project ASP.NET or PHP

    PHP+MySQL can handle that much of data and requests. So don't worry, even TDF is also running on that. Advantage for PHP & MySQL is that it is free but for ASP.NET you need to pay. If you are ready to pay then go for one in which you are efficient.
  11. n2casey

    Need Help in Programming .... Its Important !

    Yes, Liverpool_fan has given a good suggestion. You shud concentrate a little first before asking for help, so that u can learn. If u feel difficulty at any point then ask.
  12. n2casey

    exe to setup creation

    You can use Visual Studio for package creation. Otherwise use InnoSetup which is best free tool. If you want a feature rich tool the go for Install Creator which is shared one.
  13. n2casey

    Why I am leaving

    I am also not happy coz of bugs & post quality but leaving the forum is not a solution. According to me, bugs can be tolerated if the post quality is good and post quality depends only on us. So we are responsible for this. I often visit MS forums and there also I can find lot of bugs, but...
  14. n2casey

    Digit Engineers Thread

    I m also biotechnology engineer, so don't think that u r alone. well, i m passed out and currently working as Tech Lead in a Software Company
Top Bottom