Feeds:
Posts
Comments

Archive for the ‘Technology’ Category

Topic Illustrating the use of OleDb or Sql CommandBuilder to update database using dataset.

Read Full Post »

Hi guys, do you know you can use already ready code inside your visual studio? Yes certainly you can insert code snippets into your code. You can invoke the “Insert Snippet” by using shortcut “ctrl k + ctrl x” You can download some of the code snippets from http://msdn.microsoft.com/ you need to do is install [...]

Read Full Post »

Following is the sample code you can use to parse your querystring and return NameValueCollection protected void Page_Load(object sender, EventArgs e) { String currurl = HttpContext.Current.Request.RawUrl; String querystring = null ; // Check to make sure some query string variables // exist and if not add some and redirect. int iqs = currurl.IndexOf(‘?’); if (iqs [...]

Read Full Post »

A big part of the appeal of jQuery is that it allows you to elegantly (and efficiently) find and manipulate HTML elements with minimum lines of code. jQuery supports this via a nice “selector” API that allows developers to query for HTML elements, and then apply “commands” to them. One of the characteristics of jQuery [...]

Read Full Post »

Below is the line of code to disable copy & paste event in textbox. <asp:TextBox onCopy=”return false” onPaste=”return false” ID=”textboxname” runat=”server” ></asp:TextBox> Hope this helps Enjoy!!!

Read Full Post »

Older Posts »

Follow

Get every new post delivered to your Inbox.