User Profile
Collapse
-
By doing this code becomes more cluttered so is there any clean way to do this. -
On Demand Loading Js Files?
Hello,
I developed project using requirejs architecture where all dependancies and js metioned in app.js files and in repective modules files under define tag metioned required jquery modules.
In this i used some third party lib like kendo and all and some i created. So when i run my application under network tab i able to see it will download all js files which i metioned in define function but right now they are not required until... -
How To make URL in lowercase in Asp.Net Razor pages?
Suppose we want our URL in lowercase for that we need to code in ConfigureServic es method where we can add a lowercase property in lowercase.
Code:services.Configure<RouteOptions>(option => { option.LowercaseUrls = true; option.LowercaseQueryStrings = true; }); -
Process.Start(" application1");
Process.Start(" application2");
Process.Start(" application3");Leave a comment:
-
Arrays In JavaScript
An array is a collection and it is zero-indexed. The meaning of this is the first element is at index zero and the last element is at an index of array length -1 position.
The array in JavaScript has length property which returns the size of that array.
Example:
Code:var array = []; console.log("Array Length -- "+ array.length);
...Code:var array = new Array(100); console.log("ArrayLast edited by gits; Jan 3 '20, 11:10 AM. Reason: fixed syntax that has to be correct in this kind of postings -
Googles Cloud SQL
A)Cloud SQL :
It is Google fully managed service that makes easy to setup MySQL, PostgreSQL and SQL server databases in the cloud. Cloud SQL is a fully-managed database service that makes easy to maintain, Manage and administer database servers on the cloud. Cloud SQL offers high performance, high availability, scalability, and convenience. Cloud SQL takes care of managing database tasks that means you only need to focus on developing... -
Auto Property in C# 6.0
The auto property came into existence at C# version 3.0. It is used for code simplification and by using this your code becomes more readable
One of the great features of c# is you can declare a property.
In this code, you can initialize the property at the time of declaration. By using this feature...Code:public class Student { public Guid Id { get; }=Guid.NewGuid(); }Last edited by gits; Nov 15 '19, 08:14 AM. Reason: imgur img dont show - change it to link so reader can at least see what the OP is talking about -
DataBase In Action Series Part I
Database:
It is an organized collection of structured information or data, typically stored electronically in a computer system. It is usually controlled by DBMS. In general data and DBMS along with the application which is associated with them is referred to as a database system.
DBMS- database management system is an interface between the database and the end-user.
SSMS(SQL Server Management Studio) it is only a client tool... -
CONSTRAINT clause allows you to define constraint name for the foreign key constraint. If you omit it, MySQL will generate a name automatically.
FOREIGN KEY clause specifies the columns in the child table that refers to primary key columns in the parent table. You can put a foreign key name after FOREIGN KEY clause or leave it to let MySQL create a name for you.Leave a comment:
-
Difference between different versions of .Net
What is main difference between different versions of .Net from 1.0 to Core -
What Was Disadvantages ASP.NET Web Forms?
•View State weight: the particular mechanism for maintaining state across requests
(known as view State) resulted in massive blocks of knowledge being transferred between
the consumer and server. This information might reach many kilobytes in even modest
web applications, and it went back and forth with each request, resulting in slower
response times and increasing the information measure demands of the server.
... -
Both Clustered Index and Nonclustered Indexes have same physical structure and stored as a B-Tree structure. But Single table have single clustered index but more than non clustered index. When you create primary key it will create clustered index by default but you can override this behaviour and if you create unique key it will create non clustered index.Leave a comment:
-
You can use dock or anchor property of controls along with layout which is present in container section. Try to use this. Might be your problem will solve.
...Leave a comment:
-
SagarJaybhay replied to How do I set a limit to the amount of records can be entered in an access table?in AccessFirst take count from your table if it satisfy your condition then enter data into table if not then simply reject the entry. After make new entry simple increment value of count. I think it will solve.Leave a comment:
-
same error i got like iframe.
Refused to display 'https://example.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'.Leave a comment:
-
-
How to second website page into my first website?
I m trying to display webpage into second website using iframe but i don't want to use iframe. Is their any way rather than iframe?
No activity results to display
Show More
Leave a comment: