Blog Detail
Beautiful Mind
http://salviashish.wordpress.com/
Beautiful Mind is all about Technology,Life & Learnings.
Recent Posts
Updating database using dataset
This topic illustrates how to update data in a database using a DataSet. It is important to remember that you can also insert, update, and delete data in a database directly using a SqlCommand. Once the DataSet is loaded, you can modify the ...
Insert Code Snippet – Tip Of Week#1
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 co...
Be Sunshine Happy :)
What makes some people simile and stay sunshine happy, almost all the time? These optimists refuse to get crushed by bad news and spread the sounds of laughter and hope. They are all around us, trying to give those who’re sulking, frowning and ...
Using ParseQueryString to get QueryString Values
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...
JQuery in Visual Studio
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...
Disable copy & paste in asp.net textboxes
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 thi...

