Answered Questions

  • add a field at run time to a table in ado.net

    Imports System.Data.SqlClientPublic Class Form1Dim cn As New SqlConnection("server=.;database=atten;uid=sa;pwd=sa;")Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click'savecn.Open()Dim query, query1, query2 As StringDim regnum As Integerquery1 = "select max(reg) from sdetail"Dim cmd1 As New SqlCommand(query1, cn)regnum = cmd1.ExecuteScalarTextBox1.Text...

  • Explain the differences between Server-side and Client-side code?

    Shrikant B

    • May 18th, 2016

    A) Server Side: The code which is executed on the server side ( on the server machine) Example: asp.net.
    B) Client Side: The code which is executed on the client side (on client browser/ machine) Example: JQuery/ JavaScript.

    Zalak Patel

    • Sep 27th, 2011

    =Server side code get executed on the web server in the response of request for any aspx page. =client-side code get executed on the client browser.(e.g. validation of controls, dynamically hiding an...