3
Answers

Master Page-Changing Header matching for each page

r p

r p

16y
3k
1
Hi,
In my master page, I want to CHANGE MY HEADER IMAGE ACCODING TO THE CURRENT PAGE which the user is visiting. For each page I have each image. How can I change the header for each page in the master page? For example, I have an image for the registration(reg.aspx) page, I have another image for the products(prod.aspx) page, I have another image for the purchase (pur.aspx) page and so on.
Any clue!
Answers (3)
1
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 8y
You can use ISNULL function, if value is null it display 0
 
ISNULL(columnName, 0)
 
For further reference:
http://stackoverflow.com/questions/16667148/instead-of-null-how-do-i-show-0-in-result-with-select-statement-sql
 
Do let me know if it solves your problem. 
0
Bikesh Srivastava

Bikesh Srivastava

NA 19.8k 835.1k 8y
Use this code.
ISNULL(clmnName, 0)