
Search In
The tier pricing allows us to apply discount from the product detail and catalog list pages. This discount can be applied to the specific type of customer group or store view.
The calculated quantity discount in tier pricing on the pa
Sometime there is a situation where we have to call previous page method after completing the current page process. This is usually required when we open the page in Dialog box.
Here below is the example of this.In this example, I open the 2nd form i
SHA1(Secure Hash Algorithm 1) is an encryption type which is useful while saving password and other information which we want to keep secured.
Here is the sample code of converting a string to SHA1 hash.
public static string GetSha1(string value)
While writing the stored procedure you always pass the parameters as the input type and the output type according to your need.
So while using these parameters you may notice that if you miss any parameter value during the stored pro
In writing the stored procedure we always need to work with the default value for the proper execution of the programs and the stored procedure we have made for the application.
So for doing it sometimes we have scenarios when we don
The DOM Document Object Model is the hierarchy arrangement of the document which we are working upon.
When the contents and images gets uploaded in the browser this will be the time to load DOM and if that time is over then that portion of t
Hello friends, I am writing this blog as I was facing issue reading .xps files. XPS is XML Paper Specification. I resolved this issue by installing xpstopdf converter. This is how I did
This is the easiest way to do:
First, go to Ubuntu Software ce
By using below code you can give bottom border to your text fields
-(void)giveBottomBorderToTheTextField:(UITextField *)textField{
CALayer *border = [CALayer layer];
CGFloat borderWidth = 2;
border.borderColor = [UIColor darkGrayCo
Cross-Site Scripting(XSS) is a type of attack in which attacker can insert and run the client side script in the web application. It occurs when user does not validate or encode the user inputs and show it in the browser directly. The most common scr
Linux OS developed by Linus Torvalds in '91 is based on Unix OS . It's core functionalities have been greatly inspired and adopted from Unix but unlike Unix , Linux can also run on small devices with low hardware capacities, Linux is co
