ASP (565)
CGI Perl (498)
JavaScript (1409)
VB Script (599)
JSP (733)
Shell Script (465)
Tcl (27)
Awk (108)
AJAX (338)
Ruby on Rails (259)
AngularJS (2297)
jQuery (647)
JSON (175)
Node.js (721)
React.js (389)
Scripts AllOther (50) hi iM rahul.my questions is my project is a web based & developed using java,jsp. when i record it using qtp what script i will get like either browser("jdfjkf").page("nkf").... or javawindow("f d ").javaedit("Dasf").... plz clarify my doubt asap and i also need some vbscipt of java coding?
2128Can we create Crystal Report object in QTP?If yes then what it is and what are its various properties?
3458I have all files relating one project in ASP.... I want to make a Localhost for running like website........
2 3998For a webbased application:- what should be code in expert veiw, for retrieving a single column name "username" from a server and checking whether exported "username" from datatable doesn't exist in server. suppose i have saved in excelsheet a username="gayatri" , which is exported, then checked for whether this username "gayatri" exist in server database or not ? if exist then allow to enter new username, which should be again checked for in loop , or else come out of loop and enter a distinct "username". plz let me have this answer in my id gayatrisahooin@hotmail.com
2190
What is the difference between using constructor vs getInitialState in React?
How to get image width height in angular js, before uploading a file?
Does angular use ajax?
What is the difference between concern and application_controller.rb in ruby on rails?
c program to display the information of given file similar to givan by the unix or linux command ls -l
How javascript sort function works?
What are the limitations of javascript?
What does dollar sign mean in jquery? : jQuery Mobile
What is the use of node_env?
What happen if you return false from a jQuery event handler?
What is component in reactjs?
What is angular router and router module?
“Perl regular expressions match the longest string possible”. What is the name of this match?
What are angular 2 directive?
package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,