Skip to content

Commit cf3aabe

Browse files
Merge pull request #182 from syncfusion-content/SEO-2245_Site_Audit_Issues
SEO-2344_Site_Audit_Issues
2 parents e06db71 + 3e61d48 commit cf3aabe

File tree

7 files changed

+37
-37
lines changed

7 files changed

+37
-37
lines changed

aspnet/DataManager/corsdatafetching.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
layout: post
33
title: CORS Data Fetching | DataManager | ASP.NET Webforms | Syncfusion
4-
description: CORS Data Fetching
4+
description: Learn here about CORS Data Fetching in Syncfusion Essential ASP.NET Webforms DataManager Control, its elements, and more.
55
platform: aspnet
66
control: DataManager
77
documentation: ug
88
keywords: CORS Data Fetching, SAME-ORIGIN POLICY, Access-Control-Allow-Origin, Access-Control-Request-Method, Access-Control-Request-Headers
99

1010
---
11-
# CORS Data Fetching
11+
# CORS Data Fetching in ASP.NET Webforms DataManager
1212

1313
The Cross-Origin Resource Sharing (CORS) mechanism enable secure cross-domain data transfers.
1414

1515
## SAME-ORIGIN POLICY
1616

1717
This policy defined the rule for, “how a web page can be accessed by an external resource”. Browsers wont permits a request to access the resources who origin is differ than the current page. To overcome the restriction of same-origin policy, we can use a technique called Cross-origin resource sharing.
1818

19-
![](CORS_images/SAME-ORIGIN1.png)
19+
![ASP.NET Webforms DataManager CORS](CORS_images/SAME-ORIGIN1.png)
2020

2121
## Access-Control-Allow-Origin
2222

@@ -75,4 +75,4 @@ This header is used when issuing a preflight request to let the server know what
7575

7676
{% endhighlight %}
7777

78-
[For more details, please refer to this link:](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Access-Control-Allow-Headers)
78+
[For more details, please refer to this link:](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#access-control-allow-headers)

aspnet/Grid/Localization.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Localization with Grid widget for Syncfusion Essential ASP.NET
4-
description: How to use globalization and localization
4+
description: How to use globalization and localization in Syncfusion Essential ASP.NET Web Forms Grid Control, its elements, and more.
55
platform: aspnet
66
control: Grid
77
documentation: ug
@@ -452,7 +452,7 @@ The Grid and Pager has its own locale labels for applying the information about
452452

453453
The output for the above code example is displayed as the following screenshot.
454454

455-
![](Localization_images/Localization_img1.png)
455+
![ASPNET Grid Localization](Localization_images/Localization_img1.png)
456456

457457

458458

@@ -804,7 +804,7 @@ ej.ExcelFilter.Locale["de-DE"] = {
804804

805805
{% endtabs %}
806806

807-
![](Localization_images/Localization_img2.png)
807+
![ASPNET Grid Globalization](Localization_images/Localization_img2.png)
808808

809809
I> We have uploaded the predefined language packs for some commonly used cultures in [`this`](https://github.com/syncfusion/ej-global/tree/master/l10n) github location. Refer to the github location for getting the predefined language packs for the corresponding culture. The culture file has localized texts for all the Syncfusion controls.
810810

@@ -952,7 +952,7 @@ public partial class Localization : System.Web.UI.Page
952952
{% endtabs %}
953953

954954

955-
![](Localization_images/Localization_img3.png)
955+
![ASPNET Grid RTL](Localization_images/Localization_img3.png)
956956

957957
I> To translate our control content from default English to any of the culture, say For example - German language, then you need to refer the **ej.culture.de-DE.min.js** file in your application, after the reference of ej.web.all.min.js file. For all culture files, please download from the [GitHub](https://github.com/syncfusion/ej-global/tree/master/i18n) location.
958958

@@ -1101,7 +1101,7 @@ public partial class Localization : System.Web.UI.Page
11011101
11021102
11031103
1104-
![](Localization_images/Localization_img4.png)
1104+
![ASPNET Grid local filter](Localization_images/Localization_img4.png)
11051105
11061106
11071107

aspnet/Listbox/Databinding.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
33
title: Data binding | ListBox | ASP.NET Webforms | Syncfusion
4-
description: data-binding
4+
description: Learn here about data binding support in Syncfusion Essential ASP.NET Webforms ListBox Control, its elements, and more.
55
platform: aspnet
66
control: ListBox
77
documentation: ug
88
---
99

10-
# Data Binding
10+
# Data Binding in ASP.NET Webforms ListBox
1111

1212
The ListBox is populated with the node information taken from a data source. The ListBox supports binding data sources containing Object data, Remote data, XML Data, SQL Data and LINQ-to-SQL Data.
1313

@@ -152,7 +152,7 @@ listBoxSample.DataSource = GetData();
152152
{% endhighlight %}
153153
{% endtabs %}
154154

155-
![](Databinding_images/Databinding_img1.png)
155+
![ASP.NET Webforms ListBox Object Data](Databinding_images/Databinding_img1.png)
156156

157157
## Remote data
158158

@@ -193,7 +193,7 @@ listBoxSample.DataSource = "http://mvc.syncfusion.com/Services/Northwnd.svc/";
193193

194194
{% endtabs %}
195195

196-
![](Databinding_images/Databinding_img2.png)
196+
![ASP.NET Webforms ListBox Remote data](Databinding_images/Databinding_img2.png)
197197

198198

199199
## SQL Data
@@ -202,7 +202,7 @@ ListBox provides extensive data binding support to populate ListBox nodes. There
202202

203203
Define an SQL data source in the web page and configure the data source as per your requirement. The following screenshot illustrates the sample database used.
204204

205-
![](Databinding_images/Databinding_img3.png)
205+
![ASP.NET Webforms ListBox SQL Data](Databinding_images/Databinding_img3.png)
206206

207207
In the Design page, assign the values for DataTextField, DataValueField. In DataSourceID field assign the ID of the existing SQL data source.
208208

@@ -217,7 +217,7 @@ In the Design page, assign the values for DataTextField, DataValueField. In Data
217217

218218
{% endhighlight %}
219219

220-
![](Databinding_images/Databinding_img4.png)
220+
![ASP.NET Webforms ListBox LINQ to SQL Data](Databinding_images/Databinding_img4.png)
221221

222222

223223
## LINQ-to-SQL Data
@@ -228,7 +228,7 @@ Define a LINQ-to-SQL data source in the web page and configure the data source a
228228

229229
The following screenshot illustrates the sample database used.
230230

231-
![](Databinding_images/Databinding_img5.jpeg)
231+
![ASP.NET Webforms ListBox](Databinding_images/Databinding_img5.jpeg)
232232

233233
In the Design page, assign values for DataTextField, DataValueField. In DataSourceID field assign the ID of the existing LINQ-to-SQL data source.
234234

@@ -246,7 +246,7 @@ In the Design page, assign values for DataTextField, DataValueField. In DataSour
246246

247247
Output of the above steps
248248

249-
![](Databinding_images/Databinding_img6.png)
249+
![ASP.NET Webforms ListBox XML Data](Databinding_images/Databinding_img6.png)
250250

251251
## XML Data
252252

@@ -381,7 +381,7 @@ Create a new XML file in App_Data folder as ‘ListBoxXml.xml’ and add the fol
381381
{% endhighlight %}
382382

383383

384-
![](Databinding_images/Databinding_img7.png)
384+
![ASP.NET Webforms ListBox Virtual Scrolling](Databinding_images/Databinding_img7.png)
385385

386386
## Virtual Scrolling
387387

@@ -423,9 +423,9 @@ protected void Page_Load(object sender, EventArgs e)
423423
{% endhighlight %}
424424
{% endtabs %}
425425

426-
![](Databinding_images/Databinding_img8.png)
426+
![ASP.NET Webforms ListBox Normal Scrolling](Databinding_images/Databinding_img8.png)
427427

428-
![](Databinding_images/Databinding_img9.png)
428+
![ASP.NET Webforms ListBox Normal Scrolling method](Databinding_images/Databinding_img9.png)
429429

430430
### Continuous Scrolling
431431

@@ -461,9 +461,9 @@ protected void Page_Load(object sender, EventArgs e)
461461

462462
N> The “ItemRequestCount” property will work only when “VirtualScrollMode” is “Continuous”.
463463

464-
![](Databinding_images/Databinding_img10.png)
464+
![ASP.NET Webforms ListBox ItemRequestCount](Databinding_images/Databinding_img10.png)
465465

466-
![](Databinding_images/Databinding_img11.png)
466+
![ASP.NET Webforms ListBox VirtualScrollMode](Databinding_images/Databinding_img11.png)
467467

468468
### Handling errors
469469

@@ -497,4 +497,4 @@ In remote binding, the server might not return data sometimes due to various rea
497497
{% endhighlight %}
498498
{% endtabs %}
499499

500-
![](Databinding_images/Databinding_img12.png)
500+
![ASP.NET Webforms ListBox Handling errors](Databinding_images/Databinding_img12.png)

aspnet/Maps/Map-Elements.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
33
title: Map Elements | Maps | ASP.NET Webforms | Syncfusion
4-
description: map elements
4+
description: Learn here about map elements in Syncfusion Essential ASP.NET WebForms Maps Control, its elements, and more.
55
platform: aspnet
66
control: Maps
77
documentation: ug
88
---
99

10-
# Map Elements
10+
# Map Elements in ASP.NET WebForms Maps
1111

1212
Map control contains a set of map elements, including shapes, bubbles, markers, legend, labels and data items that can be visualized with customized appearance showing additional information on the map using bound data.
1313

@@ -91,7 +91,7 @@ The Markers property has a list of objects that contains the data for Annotation
9191

9292
{% endtabs %}
9393

94-
![](Map-Elements_images/Map-Elements_img1.png)
94+
![ASP.NET WebForms Maps Map Elements](Map-Elements_images/Map-Elements_img1.png)
9595

9696
Map with markers
9797
{:.caption}
@@ -152,7 +152,7 @@ Without Datasource, n number of markers can be added to shape layers with Marker
152152

153153

154154

155-
![](Map-Elements_images/Map-Elements_img2.png)
155+
![ASP.NET WebForms Maps with label](Map-Elements_images/Map-Elements_img2.png)
156156

157157
Map with label
158158
{:.caption}
@@ -257,7 +257,7 @@ N> Tooltip and Color Mappings for bubble is to be set as similar to tooltip and
257257

258258

259259

260-
![](Map-Elements_images/Map-Elements_img3.png)
260+
![ASP.NET WebForms Maps elements](Map-Elements_images/Map-Elements_img3.png)
261261

262262
Map with bubbles
263263
{:.caption}
@@ -301,7 +301,7 @@ N> While settings color for bubbles by using `ColorPath`, do not set any other c
301301
{% endhighlight %}
302302

303303

304-
![](Map-Elements_images/Map-Elements_img7.png)
304+
![ASP.NET WebForms Maps bubbles](Map-Elements_images/Map-Elements_img7.png)
305305

306306
While binding `ColorPath` for bubbles, it is possible to render the legend for each bubble. To achieve this, set the `TextPath` for legend. `TextPath` contains another field name in the datasource. As per the text, content in the field legend will be generated.
307307

@@ -342,7 +342,7 @@ While binding `ColorPath` for bubbles, it is possible to render the legend for e
342342

343343
{% endhighlight %}
344344

345-
![](Map-Elements_images/Map-Elements_img8.png)
345+
![ASP.NET WebForms Maps Elements](Map-Elements_images/Map-Elements_img8.png)
346346

347347

348348
## Legend
@@ -422,7 +422,7 @@ N> Here, Equal Color Mapping code sample for shapeSettings with color mappings
422422

423423

424424

425-
![](Map-Elements_images/Map-Elements_img4.png)
425+
![ASP.NET WebForms Maps with legend](Map-Elements_images/Map-Elements_img4.png)
426426

427427
Map with legend
428428
{:.caption}
@@ -469,7 +469,7 @@ N> Here, Range Color Mapping code snippet for shapeSettings with color mappings
469469

470470

471471

472-
![](Map-Elements_images/Map-Elements_img5.png)
472+
![ASP.NET WebForms Maps with interactive legend](Map-Elements_images/Map-Elements_img5.png)
473473

474474
Map with interactive legend
475475
{:.caption}
@@ -531,7 +531,7 @@ A bubble legend feature is used to provide the key (legend) for another map elem
531531

532532
{% endhighlight %}
533533

534-
![](Map-Elements_images/Map-Elements_img6.png)
534+
![ASP.NET WebForms Maps Bubble Legend](Map-Elements_images/Map-Elements_img6.png)
535535

536536
Bubble Legend
537537
{:.caption}
-75.4 KB
Loading

aspnet/Schedule/Data-binding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Data binding with Schedule
2+
title: Data binding support in ASP.NET Web Forms Schedule Control| Syncfusion
33
description: Databinding is used to show the different binding of adaptor section using Syncfusion ASP.NET Web Forms Schedule component.
44
platform: aspnet
55
control: schedule
66
documentation: ug
77
keywords: data binding, local data, remote data
88
---
9-
# Data Binding
9+
# Data Binding support in ASP.NET Web Forms Schedule
1010

1111
## Appointment Fields
1212

aspnet/Schedule/how-to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: How-to
2+
title: How to Section in ASP.NET Web Forms Schedule Control | Syncfusion
33
description: The how to section explain more functionalities or informations about Syncfusion ASP.NET Web Forms Schedule control.
44
platform: aspnet
55
control: Schedule
66
documentation: ug
77
keywords: globalize, localize, localization, globalization
88
---
9-
# How To
9+
# How to Section in ASP.NET Web Forms Schedule
1010

1111
## Validate the Custom Appointment Window Fields
1212

0 commit comments

Comments
 (0)