Thursday, 29 December 2022
flutter error
Thursday, 22 December 2022
facebook share
face book login or share and send message using facebook developer link
below is the link to check js sdk documentaion
C# predefined methods
C# | IsNullOrEmpty() Method
Wednesday, 21 December 2022
Azure
1.Azure ssl binding for domain done
step one:goto appservice on left panel select ssltls binding blade
2.give domain name and bind that domain in tslssl
4.then click on binding select app servicecertifcate plane create fort hat key value
5.then select standard ssl 70 $ for this need to to create keyvault.
6.then we need to follow 3 steps 1.domain validation 2.bind manual binding the
txt record in godaddy
7.after binding it will validate.
8.then ssl will added
Wednesday, 14 December 2022
change install softwares drive from c
css for buttons in line and gap
display:flex
gap:20px
icon at table td at end
and icon size increase using font:0.73em
- display: inline-block;
- float: right;

Tuesday, 13 December 2022
Angular Error
errorHandler
Monday, 12 December 2022
GooglePlaystore issues
Sunday, 4 December 2022
Remove 0 form the first mobile number
while (this.form.mobileNo?.charAt(0) === '0')
Thursday, 1 December 2022
mutli select drop down angular
<mat-form-field>
<mat-select placeholder="Documents to Export:" [formControl]="documents" multiple>
<mat-option *ngFor="let doc of documentList" [value]="doc.value" (onSelectionChange)="onSelect($event)">{{doc.value}}</mat-option>
<div style="margin: 10px; float: right;">
<button [disabled]="document" mat-raised-button color="primary">Export Images</button>
</div>
</mat-select>
</mat-form-field>
TS:
onSelect(event) {
if (event.isUserInput) {
if (event.source.selected) {
this.selectedDocs.push(event.source.value);
} else {
this.selectedDocs = this.selectedDocs.filter(d => d !== event.source.value)
}
}
console.log(this.selectedDocs);
}
7 Common mistakes in Dot Net — You can avoid
There are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code… Code Crack...

-
Points 1.complex page layouts and adherence to code standards. 2.primeNG pagination 3.ngcontent 4.ngdestory(memorylekage) 5.datatransfer wi...
-
Check duplicate count based on 3 columns combo select EMPID,FORMinfoID,FormName,Count(*) as counts from tbl_FilesMigrationLogs group by Em...