Skip to main content

Posts

Showing posts with the label AJAX

DotNet ,C Sharp and SQL Interview Questions

DotNet and SQL Interview Questions 1)Say in a structure which is value type. we have added a reference type variable. will it be stored in stack memory or heap  2)in data-grid you are displaying a table. if you want to know what are the rows which are updated how do you implement it  3)suppose you want to store you connection string where are you going to store it apart from web.config and appsettings.  4)in try catch scenario there are two catch blocks one is System defined & other is user defined which will be executed first.  5)in boxing & unboxing which one is expensive.  6)difference between catch and throw  7)you have deployed windows service at client place. say suppose it is giving erroneous results. it is running application. how do you debug it.  8)there is a webservice deployed at the client place how can you check whether that application is working fine or not.  9)you have deleted a record from database from your application a at the same time so

Ajax examples in asp.net

Customize Ajax Editor Control using System;using System.Data; using System.Configuration; using System.Linq;using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq;using AjaxControlToolkit.HTMLEditor; /// /// Summary description for customEditor /// /// namespace myControls { public class customEditor : Editor { public customEditor() { // // TODO: Add constructor logic here // } protected override void FillTopToolbar() { TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Bold()); TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Italic()); TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Copy()); TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.ToolbarButton.Cut()); TopToolbar.Buttons.Add(new AjaxControlToolkit.HTMLEditor.T