Browse by Tags

All Tags » Visual Studio (RSS)

Remove Google Translator’s Top Frame by Rajneesh Verma

Hi, A small tip that how to remove Google Translator’s Top frame when we translate any website using Google translator. I found one java script that i want to share with you. <script type= 'text/javascript' > if (window.top !== window.self) {window...

Display random number in c# by Rajneesh Verma

Again a small tip, How to display n digit random numbers in ASP.NET using c# ? Its a bit simple you need to call Random class to generate numbers with minimum and maximum limits of digits (numbers). the code is as Follow: Code Snippet protected void Page_Load...

Add n number of blank rows in GridView without database. by Rajneesh Verma

Today I got a query to add 3 blank rows in GridView so I posted here. Some Key points are: 1. Add namespace using System.Data; 2. Define DataTable on Main Class: DataTable myDt; 3. Create a DataTable : private DataTable CreateDataTable() { DataTable myDataTable...

ASP.NET Popup Login control using DIV and CSS by Rajneesh Verma

This is my first blog. is there any mistake please forgive me. As i have seen that most people ask for Popup Login control in ASP.NET to achieve this their are number of ways but simplest method is to use DIV and CSS. First create login control in ASP...
More Posts