Master Page-Changing Header matching for each page
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
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
Use this code.
ISNULL(clmnName, 0)