Saturday, 29 June 2019
Solved : January, 2015 M4.3-R4: INTRODUCTION TO ICT RESOURCES
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
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
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
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
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
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)
Razor/View Section
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Subscribe to:
Posts (Atom)