Blog Detail
On the way of being a .net developer
http://www.aspxdev.blogspot.com/
In this blog i shall explore the challanges i faced in my development carrier as an asp.net developer. It will contain the solution of the problems. And also the new thinks i have learned through my job.
Recent Posts
Custom paging in Gridview With ObjectDataSource
Many times we use paging with GridView with AllowPaging = "True" and binding the GridView with some ObjectDataSource. It actually fetches all row from the database and depending on the no of records it fetched, it generates the Pager section of the p...
Focus the first control of your page
In all pages we have to put the focus on the first control of the page. It can be a textbox,a radio button, a checkbox, a select field, a textarea or a button. For my current project i have created a function which i have placed inside the masterpage...
Trigger Html/Javascript Event from Javascript
In many situation i had to trigger JavaScript Event from code. Like click on a button when something happened to post the page. It mainly comes into picture when i use UpdatePanel or using modalpopup for click on a button inside grid/list/gridview ec...
Trigger not working when importing data with SSIS package
I am very new to SSIS package. Actually i am not a hardcode SQL guy, so i never needed to work with SSIS before. In my current project i needed to import data after fetching from a server with FTP and then extract the ZIP files and insert it into res...
Reporting Service Custom Code Add Assembly
For adding assembly you have to copy the .dll assembly file to the following location "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies" folder....
Paging in Datalist and Repeater
Datalist and Repeater doesn't provide any paging by default like gridview or datagrid. So we avoid using datagrid/repeater as much as possible. But there comes situation where using datalist or repeater is easier to maintain the design for the page. ...

