User Profile

Collapse

Profile Sidebar

Collapse
SagarJaybhay
SagarJaybhay
Last Activity: Aug 11 '21, 03:19 PM
Joined: Feb 19 '19
Location: India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • SagarJaybhay
    replied to On Demand Loading Js Files?
    By doing this code becomes more cluttered so is there any clean way to do this.
    See more | Go to post

    Leave a comment:


  • SagarJaybhay
    started a topic On Demand Loading Js Files?

    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...
    See more | Go to post

  • 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;
            });
    See more | Go to post

  • Process.Start(" application1");
    Process.Start(" application2");
    Process.Start(" application3");
    See more | Go to post

    Leave a comment:


  • SagarJaybhay
    started a topic Arrays In JavaScript

    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("Array
    ...
    See more | Go to post
    Last edited by gits; Jan 3 '20, 11:10 AM. Reason: fixed syntax that has to be correct in this kind of postings

  • SagarJaybhay
    started a topic Googles Cloud SQL

    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...
    See more | Go to post

  • SagarJaybhay
    started a topic Auto Property in C# 6.0

    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.

    Code:
    public class Student
        {
            public Guid Id { get; }=Guid.NewGuid();
        }
    In this code, you can initialize the property at the time of declaration. By using this feature...
    See more | Go to post
    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

  • SagarJaybhay
    started a topic DataBase In Action Series Part I

    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...
    See more | Go to post

  • SagarJaybhay
    replied to CONSTRAINT What for?
    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.
    See more | Go to post

    Leave a comment:


  • SagarJaybhay
    started a topic Difference between different versions of .Net
    in .NET

    Difference between different versions of .Net

    What is main difference between different versions of .Net from 1.0 to Core
    See more | Go to post

  • SagarJaybhay
    started a topic What Was Disadvantages ASP.NET Web Forms?

    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.
    ...
    See more | Go to post

  • 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.
    See more | Go to post

    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.

    ...
    See more | Go to post

    Leave a comment:


  • First 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.
    See more | Go to post

    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'.
    See more | Go to post

    Leave a comment:


  • Trying below but not successful
    ...
    See more | Go to post

    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?
    See more | Go to post
No activity results to display
Show More
Working...