קורסי מיקרוסופט לארגונים – כרמל הדרכה

Microsoft Partner

קורס Developing ASP.NET Core Web Applications

55340AC

About This Course

In this 5-day course, professional web developers will learn to develop advanced ASP.NET Core MVC applications using .NET tools and technologies. The focus will be on coding activities that enhance the performance and scalability of the Web site application.

Audience Profile

This course is intended for professional web developers who use Microsoft Visual Studio in an individual-based or team-based, small-sized to large development environment. Candidates for this course are interested in developing advanced web applications and want to manage the rendered HTML comprehensively. They want to create websites that separate the user interface, data access, and application logic. The server-side development will use the C# language, and is an excellent follow-on course to our Programming in C# course (M55339A). The client-side development will make use of JavaScript, CSS and HTML5.

Course Details

Module 1: Exploring ASP.NET Core

Microsoft ASP.NET Core web technologies can help you create and host dynamic, powerful, and extensible web applications. ASP.NET Core, is an open-source, cross-platform framework built on .NET, that allows you to build web applications. You can develop and run ASP.NET Core web applications on Windows, macOS, Linux, or any other platform that supports it. ASP.NET Core supports an agile, test-driven development cycle. It also allows you to use the latest HTML standards and front-end frameworks such as Angular, React, and more.

Lessons

Introducing Microsoft Web Technologies

  • Getting Started with Razor Pages in ASP.NET Core
  • Introducing ASP.NET Core MVC

After completing this module, students will be able to:

  • Understand the variety of technologies available in the Microsoft web stack.
  • Describe the different programming models available for developers in ASP.NET.
  • Describe the role of ASP.NET Core in the web technologies stack, and how to use ASP.NET Core to build web applications.

Module 2: Designing ASP.NET Core Web Applications

Microsoft ASP.NET Core is a programming model that you can use to create powerful and complex web applications. However, all complex development projects, and large projects in particular, can be challenging and intricate to fully understand. Without a complete understanding of the purposes of a project, you cannot develop an effective solution to the customer’s problem. You need to know how to identify a set of business needs, and then make technology choices and plan the web application to meet those needs. The planning phase assures stakeholders that you understand their requirements and communicates the functionality of the web application, its user interface, structure, and data storage to the developers.

Lessons

  • Development Methodologies
  • Planning in the Project Design Phase
  • Choosing between Razor Pages and MVC
  • Designing Models, Controllers and Views

After completing this module, students will be able to:

  • Plan the overall architecture of an ASP.NET Core MVC web application and consider aspects such as state management.
  • Plan the models, controllers, and views that are required to implement a given set of functional requirements.

Module 3: Using Razor Pages and Middleware

ASP.NET Core is a framework that allows us to build many kinds of applications. In this module we’ll first look in more detail at ASP.NET Razor Pages, as a quick way of building a web application that doesn’t require the complexity of the MVC model. Then we will look at middleware, which has a particular meaning in the context of the ASP.NET Core request pipeline, and potentially allows multiple separate requests to be handled in a completely different fashion and receive separate responses. You will learn how to leverage the ASP.NET Core framework to handle requests and responses via existing, and custom middleware, and how to configure services for use in middleware and throughout other parts of the application, such as controllers. We will also look at Services; classes that expose functionality which you can later use throughout different parts of the application. This is achieved without having to keep track of scope manually in each individual location, or instantiate any dependencies, by using Dependency Injection. Dependency Injection is a technique used by ASP.NET Core that allows us to add dependencies into the code without having to worry about instantiating objects, keeping them in memory, or passing along required dependencies.

Lessons

  • Using Razor Pages
  • Configuring Middleware
  • Configuring Services

After completing this module, students will be able to:

  • Build a simple web application using Razor Pages.
  • Use existing middleware to set up an ASP.NET Core application.
  • Understand the basic principles behind Dependency Injection, and how it is used in ASP.NET Core.

Module 4: Developing Controllers

ASP.NET Core MVC is a framework for building web applications by using the Model-View-Controller (MVC) architectural pattern. The Controller is essentially responsible for processing a web request by interacting with the model and then passing the results to the view. The model represents the business layern, and may include data objects, application logic, and business rules. The View uses the data that it receives from the controller to produce the HTML or other output that is sent back to the browser. In this module we will focus on developing controllers, specialized classes which are central to MVC applications. Understanding how controllers work is crucial to being able to create the appropriate model objects, manipulate them, and pass them to the appropriate views. Controllers have several methods that are called ‘actions’. When an MVC application receives a request, it finds which controller and action should handle the request. It determines this by using Uniform Resource Locator (URL) routing; another very important concept necessary for developing MVC applications. We will also see how to maximize the reuse of code in controllers by writing action filters.

Lessons

  • Writing Controllers and Actions
  • Configuring Routes
  • Writing Action Filters

After completing this module, students will be able to:

  • Add a controller to a web application that responds to user actions that are specified in the project design.
  • Add routes to the ASP.NET Core routing engine and ensure that URLs are user-friendly in an MVC web application.
  • Write code in action filters that runs before or after a controller action.

Module 5: Developing Views

Views are one of the three major components of the Model-View-Controller (MVC) programming model. You can define the user interface for your web application by creating views; a combination of HTML markup and C# code that runs on a web server. To create a view, you need to know how to write the HTML markup and C# code and use the various helper classes that are built into MVC. You also need to know how to create partial views and view components, which render sections of HTML that can be reused in your web application. We will also look in more detail at Razor markup syntax for embedding .NET based code into webpages.

Lessons

  • Creating Views with Razor Syntax
  • Using HTML Helpers and Tag Helpers
  • Reusing Code in Views

After completing this module, students will be able to:

  • Create an MVC view and add Razor markup to it to display data to users.
  • Use HTML helpers and tag helpers in a view.
  • Reuse Razor markup in multiple locations throughout an application.

Module 6: Developing Models

Most web applications interact with various types of data or objects. An e-commerce application, for example, manages products, shopping carts, customers, and orders. A social networking application might help manage users, status updates, comments, photos, and videos. A blog is used to manage blog entries, comments, categories, and tags. When you write a Model-View-Controller (MVC) web application, you create an MVC model to model the data for your web application. Within this model, you create a model class for each type of object. The model class describes the properties of each type of object and can include business logic that matches business processes. Therefore, the model is a fundamental building-block in an MVC application. We will also look at validation of user input.

Lessons

  • Creating MVC Models
  • Working with Forms
  • Validating User Input

After completing this module, students will be able to:

  • Add a model to an MVC application and write code in it to implement the business logic.
  • Use display and edit data annotations.
  • Validate user input with data annotations.

Module 7: Using Entity Framework Core in ASP.NET Core

Web applications often require a data store for dynamic information, for example to create a web application that changes continually in response to user input, administrative actions, and publishing events. The data store is usually a database, but other types of data stores are also used. In Model-View-Controller (MVC) applications, you can create a model that implements data access logic and business logic. Alternatively, you can separate business logic from data access logic by using a repository class that a controller can use to read from or write to an underlying data store. When you write an ASP.NET application you can use the Entity Framework Core (EF Core) and Language Integrated Query (LINQ) technologies, which make data access code very quick to write and simple to understand. In this module, you will see how to build a database-driven website in ASP.NET Core using Entity Framework.

Lessons

  • Introduction to Entity Framework Core
  • Working with Entity Framework Core
  • Using Entity Framework Core Database Providers

After completing this module, students will be able to:

  • Connect an application to a database to access and store data.
  • Explain EF Core.
  • Work with Entity Framework Core.

Module 8: Using Layouts, CSS and JavaScript in ASP.NET Core

While building web applications, you should apply a consistent look and feel to the application. You would typically include consistent header and footer sections and navigation controls in all the views. Microsoft ASP.NET Core uses special templates called layouts to achieve this, along with cascading style sheets (CSS) to enhance the appearance and usability of your web application. You can also create interactive HTML elements by using JavaScript to provide client-side code in your web application, along with client-side JavaScript libraries.

Lessons

  • Using Layouts
  • Using CSS
  • Using JavaScript

After completing this module, students will be able to:

  • Apply a consistent layout to ASP.NET Core MVC applications.
  • Add JavaScript code to your web application.
  • Use CSS stylesheets.

Module 9: Client-Side Development

When creating an application, it is important to know how to develop both client-side and server-side code for the application. In this module, you are going to learn client-side tools that will allow you to create complex web applications on any scale, including using the Bootstrap CSS framework to style your web application. You will learn how to use Sass, a CSS pre-processor that adds code-like features such as variables, nested rules, and functions, that improve the maintainability of complex CSS stylesheets. You will learn responsive design principles that allow you to adapt your web application based on the capabilities of the web browser or device using CSS media queries, and how to use a responsive grid system. Next, you will learn how to set up the gulp task runner and use it to compile Sass files during the build and perform bundling and minification of CSS and JavaScript files, and how to set up a watcher task to automatically compile Sass files as you write your code. Finally, we’ll introduce the Blazor framework for building an interactive client-side web UI with .NET.

Lessons

  • Responsive Web Design
  • Using Front-end Development Tools
  • Looking at ASP.NET Core Blazor

After completing this module, students will be able to:

  • Use Bootstrap and SASS in a Microsoft ASP.NET Core application.
  • Use front-end development tools.
  • Ensure that a web application displays correctly on devices with different screen sizes.
  • Understand ASP.NET Core Blazor applications.

Module 10: Testing and Troubleshooting

The process of software development inevitably results in coding errors or bugs that result in exceptions, unexpected behaviour, or incorrect results. To improve the quality of your web application and provide a good user experience, you must identify bugs from any source and eliminate them. In traditional software development, testers perform most of the testing at the end of a development project. However, in recent years it has become widely accepted that testing throughout the project life cycle improves code quality and greatly reduces the quantity of bugs in production software. You need to understand how to run tests on individual components to ensure that they function as expected before you assemble them into a complete web application. It is also important that you know how to handle exceptions when they occur and handle them correctly to provide appropriate user feedback, without leaking information about the application structure. Finally, by using logging throughout the application, you can monitor user activities that might lead to unexpected issues and troubleshoot production problems by tracing flows through the application.

Lessons

  • Testing ASP.NET Core Applications
  • Implementing an Exception Handling Strategy
  • Logging ASP.NET Core Applications

After completing this module, students will be able to:

  • Run unit tests to verify code and locate potential bugs.
  • Build a Microsoft ASP.NET Core application that provides robust exception handling.
  • At application logging to your solutions.

Module 11: Managing Security

Web applications are normally delivered through a web browser, by means of the public Internet, to large numbers of users. This means that security must always be at the forefront of your mind when building these applications, because as well as legitimate users, the application will be exposed to malicious third parties. Users may have anonymous access, or they may have a signed-in identity, and you must decide which users can perform what actions. Authentication is the act of establishing a user’s identity, while authorization is the process where an already authenticated user is granted access to specific actions or resources. By utilizing authorization, you can prevent users from accessing sensitive material or information and resources intended for another user or prevent them from performing certain actions. The costs of security breaches can be very high, resulting in loss of data, legal action, and reputational damage. So, in the final section we will look at some specific malicious attacks such as cross-site scripting and SQL injection, and how to defend against them.

Lessons

  • Authentication in ASP.NET Core
  • Authorization in ASP.NET Core
  • Defending from Common Attacks

After completing this module, students will be able to:

  • Add basic authentication to your application.
  • Configure Microsoft ASP.NET Core Identity.
  • Add basic authorization to your application.
  • Understand how security exploits work and how to better defend against them.

Module 12: Performance and Communication

Modern web applications need to be able to respond quickly to large numbers of user requests within a small timeframe. Caching allows you to store common requests, avoiding the need to perform the same logic repeatedly. This provides the user with a fast response time and reduces system resources used in conducting the logic for the action. By utilizing various forms of state management, you can build stateful applications on top of stateless web protocols, to give responses tailored to individual user contexts within the same application. Finally, SignalR is an easy-to-use bi-directional communications API that is an abstraction over several different web communications protocols. This allows you to build server-side logic to push content to browser-based web applications in real time.

Lessons

  • Implementing a Caching Strategy
  • Managing State
  • Supporting Two-way Communication

After completing this module, students will be able to:

  • Implement caching in a Microsoft ASP.NET Core application.
  • Use state management technologies to improve the client experience, by providing a consistent experience for the user.
  • Implement two-way communication by using SignalR, allowing the server to notify the client when important events occur.

Module 13: Implementing Web APIs

Most web applications require integration with external systems. Representational State Transfer (REST) services help reduce application overhead and limit the data that is transmitted between client and server systems using open standards. You need to know how to expose a Web API that implements REST services in your ASP.NET application. You also need to know how to call a Web API by using both server-side and client-side code to consume external REST-style Web APIs.

Lessons

  • Introducing Web APIs
  • Developing a Web API
  • Calling a Web API

After completing this module, students will be able to:

  • Create services by using ASP.NET Core Web API.
  • Call a Web API from server-side code.
  • Call a Web API from client-side code.

השאירו פרטים ונחזור אליכם בהקדם:

למה לבחור בכרמל הדרכה?

אנחנו מציעים פתרונות איכותיים להדרכות מקצועיות שחוסכות לכם זמן ומשאבים, ומספקים לכם את הכלים לקחת את כישורי האקסל שלכם עוד צעד קדימה!

מרצים מובילים

בעלי ניסיון הדרכתי ומעשי עשיר

מגיעים אליכם

אתם קובעים את מיקום הקורס והמועד

תאוריה ותרגול

חומרי לימוד ומעבדות רשמיות של מיקרוסופט הזמינים בענן

תוכנית מותאמת

התאמה מלאה ואישית לדרישות ולצרכי הארגון

חברת כרמל הדרכה מספקת פתרונות הדרכה, הטמעה, ייעוץ וניהול פרוייקטים בתחום ה IT, ניהול מערכות מידע, פיתוח ואבטחת מידע.

בעולמות ההדרכה

הדרכות לארגונים החל מרמת משתמש ועד לרמת למנהל מערכות מידע, CIO, אנשי פיתוח, תשתיות IT, אנשי BI, אבטחת מידע, ניהול עולמות ענן Azure & Office 365.

קורסי יישומי מחשב Office, excel, Visio, Project, Teams, OneDrive ….

קורסים בהתאמה לצרכי הלקוח.

בתחום ההטמעה אנו עוסקים בניהול פרויקטים ארוכי טווח בעולמות ההדרכה, Change Management – הטמעה ואימוץ טכנולוגיות מתקדמות, החדרת טכנולוגיות חדשות לארגונים, בניית מערכי הדרכה והטמעה, Train The Trainer, העברת ידע לצוותי IT, Help Desk ומשאבי אנוש. 

כתיבת ספרות טכנית.

Carmel Training & Deployments
Carmel Training & Deployments

בעולמות הפרויקטים

  • ייעוץ – ייעוץ טכני ומקצועי עבור תהליכי שינוי והטמעת מערכות מידע בארגון כגון
    • מערכות ענן- Azure, 365
    • מערכות מחשוב On-Prem Infrastructure (שרתים ויישומים)
    • אבטחת מידע בענן ובסביבות מקומיות
  • אפיון ותכנון – אפיון פרויקטים הכוללים הטמעת מערכות בארגונים ובכלל זה, תכנון של דרכי ההשגה ומטרות הפרויקטים.
  • הטמעה – הטמעה של תהליכי השינוי עד להשגת היעדים כפי שאופיינו, החל מפתרונות ההדרכה וכלה בהטמעת מערכות בפועל בסביבה הארגונית הנרחבת.
  • פיתוח והטמעת פתרונות ענן ארגוניים
    • פיתוח ל Power BI
    • פיתוח ל Teams, Power Automate, Power Apps
  • שירותי תחזוקת IT – שירותי תמיכה לפתרונות ומערכות IT בארגונים בינוניים וגדולים.
  • רישוי למוצרי מיקרוסופט לרבות פלטפורמות הענן השונות

Microsoft Partner

חברת כרמל הדרכה הינה שותף הדרכה מורשה של מיקרוסופט, בעלת הסמכות להדריך על כל מוצרי מיקרוסופט

אולי יעניין אותך גם...

קורס Planner

קורס Planner 365 – פעילויות ב-Planner

סינון פעילויות (Filter) בתוכנית ניתן לסנן את הפעילויות לפי קטגוריות וקריטריונים רצויים, כגון: פעילויות לתאריך מסוים, לשבוע זה, לשבוע הבא, פעילויות לעובד מסוים, פעילויות עם

קרא עוד »
קורס Power Automate

קורס Power Automate – מה זה Power Automate?

מה זה Power Automate ואיך הוא יכול לעזור לארגון שלך?
Power Automate הוא כלי לבנייה ופיתוח של תהליכים אוטומטיים, המבצעים רצף פקודות קבוע בין יישומים ושירותים ממוחשבים ובתוכם, ללא צורך בקוד או שפת תכנות. רצף זה נקרא תזרים או Flow.

קרא עוד »
קורס Power BI

מה זה BI או בינה עסקית וכיצד היא מסייעת לארגונים?

הצורך בתגובה מהירה לשינויים בשוק מצד אחד ויצירת תכניות עבודה מבוססות וארוכות טווח מצריכה מכולנו ניתוח נתונים מהיר ואבטחת אמינות המסקנות. עם זאת, מעטים מאיתנו יש את הכישורים והזמן לאסוף ולנתח את כמויות גדולות של נתונים הנדרשים כדי להגיע להחלטות איכותיות ומבוססות. פתרונות BI מסייעים למשתמשים שאינם טכניים לקבל את ההחלטות הנכונות, על ידי ניתוח כמויות גדולות של מידע, ממקורות מרובים, ומציגים את המשתמשים עם אינדיקטורים ברורים לפעולה המתאימה.

קרא עוד »
קורס Office 365

קורס Office 365 – רכיבים בסיסיים – תבניות

לטובת ייעול העבודה, גישה מהירה לתכונות מעמיקות ביישומים גם ללא ידע רב, ולצורך יצירת קבצים בעלי יכולות מתקדמות ורמה עיצובית גבוהה ביעילות ובקלות, מגוון יישומי Microsoft 365 מציעים יצירת קובץ מתוך תבניות מוכנות מראש.

קרא עוד »
קורס אקסל

קורס אקסל – PivotChart ו- PivotTable

PivotChart – זהו תרשים – הנקרא תרשים ציר – המציג בצורה גרפית כמות גדולה של נתונים בחיתוכים שונים.
PivotTable – זו היא טבלת ציר – המציגה בצורה טבלאית כמות גדולה של נתונים בחיתוכים שונים.

קרא עוד »
קורס אקסל VBA

קורס אקסל VBA – התמצאות במבנה קוד המאקרו

כאמור, כל הפקודות הקיימות בתכנה הן מימוש של קוד בשפת תכנות. כך גם המאקרו שהוקלט מתורגם לקוד בשפת ה-VBA. ניתן לפתוח את עורך ה-VBA לצפות בקוד המאקרו, לערוך אותו ולכתוב קודים ליצירת פקודות חדשות לתכנה, ובכך להוסיף באופן מותאם אישית, על האפשרויות הקיימות בה.

קרא עוד »
Computer

Windows 10 והארגון – התמודדות חדשה בפתח.

ארגונים רבים עוברים בימים אלו לעבוד עם מערכת ההפעלה WINDOWS10. לא די בכך שהטמעת חלונות 10 הוא תהליך מורכב בארגונים, אלא שיש לקחת בחשבון עובדה שלעיתים נסתרת מעין ועלולה לגרום ללא מעט כאב ראש למנהלי המערכות ואנשי ה IT הארגוניים.

קרא עוד »
Computer

חידושים קיימים וצפויים ב- MS Teams במהלך 2019

TEAMS הכלי הנהדר לניהול צוותי עבודה מבית Microsoft, תופס תאוצה בתקופה האחרונה. אנחנו רואים את ההשפעה של השימוש בכלי הזה על ארגונים בהם ביצענו הדרכות ותהליכי הטמעה – ההשפעה על התקשורת בין העובדים, היכולת לנהל פרויקטים בקלות ובשקיפות והשיפור הכללי ביעילות העבודה.

עיקר החידושים בשנת 2019 מתבססים על צרכי אבטחה או פתרון מגבלות שימוש הקיימות כיום במערכת המורכבת, החדשנית והמעניינת שנקראת Microsoft Teams.

קרא עוד »
קורס אקסל VBA

קורס אקסל VBA – מבנה ממשק עורך ה-VBA

כאמור, כל הפקודות הקיימות בתכנה הן מימוש של קוד בשפת תכנות. כך גם המאקרו שהוקלט מתורגם לקוד בשפת ה-VBA. ניתן לפתוח את עורך ה-VBA לצפות בקוד המאקרו, לערוך אותו ולכתוב קודים ליצירת פקודות חדשות לתכנה, ובכך להוסיף באופן מותאם אישית, על האפשרויות הקיימות בה.

קרא עוד »
קורסי מיקרוסופט

קורס Visio – איך ליצור דיאגרמות מקצועיות במהירות?

למרות ש- Visio קיימת כבר משנת 1992, והיא כבר חלק מהצעת היישומים של מיקרוסופט מאז שנת 2000, היא עדיין נדירה יחסית בישראל, בוודאי בהשוואה ליישומי Office הנפוצים יותר. התוצאה היא הזדמנויות רבות שהוחמצו לארגונים ישראליים. בשורות הבאות נציג לפניכם כמה מהזדמנויות האלו.

קרא עוד »
קורס Power BI

קורס Power BI – תחביר

בינה עסקית באנגלית: Business Intelligence, בראשי תיבות BI, היא תחום בטכנולוגיית המידע העוסק בבניית מערכות העוזרות לארגון להפיק מידע משמעותי מבחינה עסקית מתוך מכלול הנתונים הנאספים על ידיו.

קרא עוד »
קורס אקסל VBA

קורס אקסל VBA – צפייה בקוד המאקרו המוקלט ועריכתו

כאמור, כל הפקודות הקיימות בתכנה הן מימוש של קוד בשפת תכנות. כך גם המאקרו שהוקלט מתורגם לקוד בשפת ה-VBA. ניתן לפתוח את עורך ה-VBA לצפות בקוד המאקרו, לערוך אותו ולכתוב קודים ליצירת פקודות חדשות לתכנה, ובכך להוסיף באופן מותאם אישית, על האפשרויות הקיימות בה.

קרא עוד »
Microsoft Inspection

קורס Teams – אפליקציית Inspection

מה זה Inspection App? ה- Inspection App היא אפליקציה פשוטה ואינטואיטיבית בסביבת ה-Teams המשמשת לסקירה, בדיקה ופיקוח אודות היבטים פיזיים כגון מוצרים, מתקנים, מיקומים או

קרא עוד »
קורס Power BI

קורס Power BI – מה זה DAX?

מהו DAX? DAX  הוא אוסף של פונקציות, אופרטורים ו קבועים, הניתנים לשימוש בנוסחה או בביטוי, כדי לחשב ולהחזיר ערך אחד או יותר. DAX צוין בפשטות,

קרא עוד »
קורס Power Apps

קורס Power Apps – חיבור למקור הנתונים

מקור הנתונים הוא ליבה של האפליקציה. כל הנתונים שהאפליקציה מציגה ומוזנים לתוכה נשמרים במקור הנתונים של הארגון שלנו. מודל הנתונים של הארגון, יכול להיות מבוסס מסדי נתונים במקורות שונים, וכולל את יחסי הגומלין ביניהם ואת התהליכים האוטומטיים בהם.

קרא עוד »
קורס Bookings

Microsoft Bookings – מבוא

Microsoft Bookings היא מערכת לתזמון ותיאום פגישות וקביעת תורים. באמצעות Bookings ניתן ליצור אתר אישי המציג מועדים פנויים בלוח הזמן לטובת זימון תור או פגישה.
בהתאם, כלי זה יעיל במיוחד לתיאום פגישות ותורים באופן פשוט עם אנשים מחוץ לארגון, שבשל כך אין להם גישה למועדים הפנויים של עובדים חיצוניים. כמו כן, ניתן להשתמש ב-Bookings גם לתזמונים יעילים ונוחים יותר בתוך הארגון, בזכות כלי ניהול מרווחי זמן, מגבלות טווחי זמן וסנכרון עם לוח השנה האישי.

קרא עוד »
קורס Power BI

קורס Power BI – מערכות BI

בינה עסקית באנגלית: Business Intelligence, בראשי תיבות BI, היא תחום בטכנולוגיית המידע העוסק בבניית מערכות העוזרות לארגון להפיק מידע משמעותי מבחינה עסקית מתוך מכלול הנתונים הנאספים על ידיו.

קרא עוד »
קורס Office 365

קורס Office 365 – הוספת אובייקטים ועריכת דפי האתר SharePoint

תלוי בסוג המינוי, חבילת ה-SharePoint שנרכשה, ובקיום שרת SharePoint Server, הפלטפורמה יכולה להיות זמינה גם בהתקנה מקומית על המחשב, חוץ מזמינותה באינטרנט כ-SharePoint Online. כמו כן, לצפייה  באתרי ה-SharePoint בסמארטפון, ניתן להוריד את האפליקציה Microsoft SharePoint.

קרא עוד »
קורס אקסל VBA

קורס אקסל VBA – מאקרו ומבוא ל-VBA

VBA (Visual Basic for Applications) היא התאמה של שפת הקוד Visual Basic לתוכנות חבילת ה-Office
(Excel, Word, Power Point וכו') המאפשרת לגשת אל "מאחורי הקלעים" של התכנה ולתכנת תכונות נוספות מותאמות אישית ולהרחיב את היכולות של התוכנות. שפת ה- VBA מותאמת בנפרד לכל אחת מהתוכנות, ול-Excel בפרט.

קרא עוד »
Security 365

קורס Security 365 – אבטחת מידע עבור עובדים בארגון

הגורם האנושי מהווה חוליה חלשה משמעותית בהגנה ושמירה על אבטחת המידע של הארגון.
ארגונים רבים חוטאים ומשקיעים בכלים טכנולוגיים בלבד, שלבסוף עלולים להיכשל.
הדרכת מודעות אבטחת מידע לעובדים עוזרת בצמצום משטח התקיפה כנגד הגורם האנושי.

קרא עוד »
קורס office 365 - Word

קורס Office 365 – סקירת מסמך Word

שינויים במסמך Word כשאנו עובדים על מסמך, פעמים רבות אנו נדרשים להגהה ולשינוי – השינויים יכולים לנבוע מכמה סיבות להלן הסיבות העיקריות: הגהה ותיקונים טכניים

קרא עוד »
Teams or Outlook אפליקציה לתקשורת מסרים פורמליים

Teams או Outlook?

אז עם מה נעבוד – Teams או Outlook?אין ספק שאופני התקשורת השתנו בצורה ניכרת בשנים האחרונות. נגישות המידע, מהירות קבלת המידע, סמארטפונים ואפליקציות לתקשורת מיידית, כל אלו מכתיבים תקשורת מיידית בקצב מהיר, עם סטטוס משתמשים שקוף ואפשרויות שיתוף מגוונות.בהתאם, תפקידו של הדואר האלקטרוני הולך ומתחדד כאמצעי לתקשורת מסרים פורמליים, לשם תיעוד ארוך טווח ולא מיידי. באופן טבעי, כשאנחנו מעוניינים בתקשורת מיידית ולשם התנהלות יומיומית נתקשר באפליקציות למסרים מיידיים.

קרא עוד »
קורס Power BI

קורס Power BI – הדמיות בדוחות POWER BI

ויזואליזציות (הידועות בתור ויזואליות בקיצור) מציגות תובנות שהתגלו בנתונים. דוח Power BI  עשוי לכלול עמוד בודד עם חזותית אחת או שהוא עשוי לכלול דפים מלאים ברכיבים חזותיים. בשירות Power BI, ניתן להצמיד תמונות חזותיות מדוחות למרכזי שליטה.

קרא עוד »
קורס office 365 - Word

קורס Office 365 – כותרת עליונה ותחתונה במסמך Word

המטרות והאפשריות ב – כותרת עליונה ותחתונה – הן, כותרות עליונות או תחתונות, שיופיעו בכל המסמך בכל עמוד ועמוד – לדוגמא מספור, אנו רוצים שמספר העמוד ימשיך לפי הסדר בכל עמוד נוסף.
אפשרות נוספת – לוגו, כשם שיש לוגו לחוברת זו בכל עמוד ועמוד.
אפשריות נוספות למספר עמוד או לוגו שביכולתנו להוסיף הן: התאריך והשעה, כותרת המסמך, נתיב המסמך, שם המחבר, ועוד מגוון אפשרויות.

קרא עוד »
קורס Bookings

Microsoft Bookings – ממשק הניהול והעריכה

כדי להגיע לממשק הניהול והעריכה של Bookings יש לפתוח את התוכנה מתוך חבילת התוכנות העסקית של Office 365. נכון לזמן כתיבת מדריך זה, Bookings היא אחת מהתוכנות בחבילה הזמינות בגרסה מקוונת בלבד, ולכן אין ממשק ניהול ועריכה להתקנה מקומית.

קרא עוד »

12.12.2023

19.12.2023

2 מפגשים

16:00 - 09:00
Power Apps Public Course2
דילוג לתוכן