Pages
▼
Saturday, 29 June 2019
Saturday, 15 June 2019
Answer : July, 2015 M4.3-R4 INTRODUCTION TO ICT RESOURCES
Multiple Choice
1.1 : C
1.2 : B
1.3 : D
1.4 : A
1.5 : A
1.6 : C
1.7 : A
1.8 : B
1.9 : C
1.10 : B
True/Fase
2.1 : F
2.2 : T
2.3 : F
2.4 : T
2.5 : T
2.6 : F
2.7 : F
2.8 : T
2.9 : T
2.10 : F
Match the columns
3.1 : C
3.2 : E
3.3 : D
3.4 : B
3.5 : F
3.6 : K
3.7 : J
3.8 : L
3.9 : M
3.10 : I
Fill in the Blanks
4.1 : G
4.2 : E
4.3 : C
4.4 : J
4.5 : K
4.6 : M
4.7 : B
4.8 : D
4.9 : A
4.10 : F
Wednesday, 5 June 2019
Copy Current url to clipboard using Javascript
function copyLinkWhatsup()
{
var dummy = document.createElement('input'),
text = window.location.href;
document.body.appendCh
Monday, 3 June 2019
Put links in head section of view
When you work in ASP.Net MVC and you want to put links in head section but it appears after many links this is because head section code comes from shared layout.
So if you want to add some links at the top in a view head section you need to make a render point in shared layout with a unique name and put your links inside of given name section.
Layout section
@RenderSection("GCSS", required: false)
@RenderSection("og", required: false)