Topic Illustrating the use of OleDb or Sql CommandBuilder to update database using dataset.
Archive for the ‘Technology’ Category
Updating database using dataset
Posted in Technology, Visual Studio, tagged Data, Database, DataSet, Dataset Delete, Dataset Update, OleDbCommandBuilder, SqlCommandBuilder, Update, Visual Studio on October 21, 2009 | 1 Comment »
Insert Code Snippet – Tip Of Week#1
Posted in Technology, Tip Of Week, Visual Studio, tagged .Net Tips, Dot Net Tips, Insert Code Snippet, Tip Of Week, Visual Studio Tips on August 14, 2009 | Leave a Comment »
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 [...]
Using ParseQueryString to get QueryString Values
Posted in Technology, Visual Studio, tagged ASP.Net, HttpUtility, NameValueCollection Example, ParseQueryString, Querystring on July 27, 2009 | Leave a Comment »
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 [...]
JQuery in Visual Studio
Posted in Javascript, JQuery, Technology, Visual Studio, tagged ASP.Net, DotNet, JQuery, Visual Studio on July 18, 2009 | 2 Comments »
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 [...]
Disable copy & paste in asp.net textboxes
Posted in Javascript, Technology, Visual Studio, tagged ASP.Net, Disable Copy, Disable Copy Paste, Disable Paste, Javascript functions, Textbox, Textbox events on July 14, 2009 | 1 Comment »
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!!!
