Following are some Search Engine Keyword through which you can find best Indian Offshore and Outsourcing companies.Offshore Software Development Company India,Outsourcing Software Development,Offshore Application Development India,Outsourcing Application Development India,Application Software Development Outsourcing,Software Development Outsourcing Company India,Offshore Outsourcing Software Development...
Tuesday, December 26, 2006
Friday, December 22, 2006
Tech2.com India > Mozilla Fixes 10 Firefox Bugs > News on Windows
Tech2.com India > Mozilla Fixes 10 Firefox Bugs > News on Windowshttp://www.tech2.com/india/news/windows-software/mozilla-fixes-10-firefox-bugs/339...
Monday, December 4, 2006
Online RSS Reader.-PageFlakes
I have gone thoguh the page flakes it is a very good site which provide rss and feeds reading with the help of ajax.The site has cool user interface and very easy navigation system. You can do lots of things on this site. You search the things using gooogle,ask,msn or yahoo. You have todo list. You have page layout editor which will create page layout very easily.It also using webparts which is a...
Thursday, November 30, 2006
Redirecting to new window in ASP 3.0
Hi,Any one can very easily redirect the page in new windows with the help of java script.Following are syntax for redirecting to a new page.<%if request("submit")<>"" then%><script language="javascript">window.open('http://localhost/content/login.asp?mstMsg=logged"%>','login');</script><%end if %&...
Tuesday, October 17, 2006
Thanks for visiting my blog
Hello Visitors,Thanks For visiting my blogs. I got 250 visitors in just one month. Thanks for giving time to my blogs. I promise you that i will keep posting new technology blogs. I will post all the new things related to ASP.NET 2.0,C#.NET,VB.NET related things.I want your suggestions so please put your comments and do visit my guestbooks.Regards,Jalp...
Saturday, September 30, 2006
Page Counter in ASP 3.0
Lots of guys had done programming for page counter for a site.I found a interesting example on IIS 5.1 documentation. It isvery easy and very cool. You can developer your page counterwith 2 or 3 line of code in asp 3.0.Following are the code:<%Set MyPageCounter = Server.CreateObject("MSWC.PageCounter")HitMe = MyPageCounter.HitsResponse.Write("Total Count:" & HitMe)%>Thats it your counter...
Saturday, August 26, 2006
code for date picker combobox control in asp.net:
ASP.NET provides calendar control to select datebut some time it not feasible due to the size ofit. It takes more spaces. So we are requiredto create a new web control which is used lessspace and also provides date selection mechanismhere are the code for that control in C#HTML CODE:================================================<asp:dropdownlist id="cmbDay" AutoPostBack="True"runat="server"></asp:dropdownlist><asp:dropdownlist...
Thursday, August 24, 2006
Thank You For Visiting My Blog
Thank You Very Much for visiting my blog,There are 155 visitors in last month who visit my blog. It is sucha over whelming experience that you work is recognized in such big way.I want your valuable comments on my post to make it better. So please putyour comments for the post directly.You can also put your valuable comments in my guest book:here are the links:Post Your Comme...
Sql Server Escape Sequence
Some times we are required to put '(Quotation Mark) in our sql stored procedure query.But '(Quotation Mark) will use for operation in sql server stored procedure. You can use escape sequence here.for example you want to put 'jalpesh' in stored procedure then you should giveprint '''jalpesh'''here first two quota ion mark counted as escape sequence and then the third ' are counted as charact...
Monday, August 21, 2006
C# 1.0/1.1/2.0 Resources
Following are some C# 1.0/1.1/2.0 ResourcesMsdn-C#http://msdn.microsoft.com/vcsharphttp://www.c-sharpcorner.com/http://en.wikipedia.org/wiki/C_Sharphttp://www.csharp-station.com/http://www.mastercsharp.com/http://www.codehound.com/csharp/http://csharpcomputing.com/http://www.planet-source.code.c...
Monday, August 14, 2006
sql server 7.0/2000/2005 resources list
Following are the list of some sql server resource sitemsdn.microsoft.com/sql/express/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/vyaskn.tripod.comhttp://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://www2.blogger.com/http://w...
Thursday, August 10, 2006
Starting Point of auto number fields in Microsoft Access
Auto Number Field handy things in Microsoft access.It willautomatically increase the filed value as records areinserted. Developer don't have to care for it. By defaultauto number field start with the zero but sometimes werequired to start auto number with rather than zero.We can do it by creating the append query. Followingare the procedure for creating our own starting pointin the Microsoft access.-First...
Paging in Datalist or Repeater Control In ASP.NET
==============================================
HTML of Datalist
==============================================
<asp:datalist id="dsList" runat="server" width=100%><ItemTemplate><%#DataBinder.Eval(Container.DataItem, "ID").ToString()%><%#DataBinder.Eval(Container.DataItem, "Name").ToString()%></ItemTemplate></asp:datalist><table width="100%" border="0" align="Center"><tr><td><asp:LinkButton...
Monday, August 7, 2006
Crystal Report : Add Comand:
Some times we need only a single field from a particular table while creating a report.Which sometimes has no relationship with others.To do this So many peoples are importing table and use a one field.
Crystal Reports 9.0 onwards give us a facility called command which return the fields as you have specified in the command query.
To do this go to the database expert and select add command...
Thursday, August 3, 2006
Displaying Multiple record in a Row in ASP.NET:
Sometimes we need to display multiple records in arow. For example we need to display image details andimage for a image viewer application.For that we could not use datagrid. Because it cannotdisplay more than one record in a row.The Asp.NET 1.1 and 2.0 provides other called datalist.Which provides this functionality very easily.It contains two properties called 'RepeatColumns'and 'Repeat Direction'.'Repeat...
Tuesday, August 1, 2006
Use Component Class in Business Logic Class in C# or VB.NET:
You can get many advantage using a component class insteadof simple class.Following are the some basic advantage that you can get usingcomponent class.- It implements System.Component namespace- You can drag and drop any existing data access component.Soyou have to right less code.- You can drag and drop stored procedure and other sql serverobject and .NET IDE will create sqlcommand and adapter andcommand...
Insert NUll in value datatype like int,float in C#
Some times we need to make some data type to null. Likein some cases like stored procedure in database.We can do it in C# very easily. by just putting ?sign in'the definition like below:int? a;that's it! you have created a value data type with nulldatabase. If you don't supply a value to the int a thenit will remain null.You can use this for any value data type like short,single,double,long,decimal...
Wednesday, July 12, 2006
Refactor tool in visual studio 2005
Re factor tool in the visual studio 2005Visual studion provides great tool for modifying or make it simple. The Refactor toolprovides great functionality like changing parameters sequence or rename parameters,record parameters,extract methods.All this things can be done within the minutes. For c# go to in your code rightclick and you can choose one of option that you want to do with your code.Refractor...
Custom Membership and Role Provider In ASP.NET
Put this into web.config file for removing default connection string<connectionStrings><remove name="LocalSqlServer"/><add name="xyzConnectionString"connectionString="Data Source=vsdotnet;Initial Catalog=xyz;User Id=sa;Password=sa;"providerName="System.Data.SqlClient"/></connectionStrings>Put this in web.config file for membership providers.<membership><providers><remove...
Tuesday, July 4, 2006
Ajax,Microsoft, Atlas Proejct,ASP.NET
AJAX = Asynchronous JavaScript And XMLThis name has made boom in web application development.Every days it is getting more and more popular.Ajax is a not a new language or standard but it is a simply a technique to use existing standard and development technology in to better way for creating better,Faster and more interactive and reach user interface web applications like desktop application.It technique...
Saturday, July 1, 2006
what is serialization -deserialization
Serialization is the process of storing class object into the some otherstate may be a file or file or something like else.Object Serialization is the process of reducing the objects instance intoa format that can either be stored to disk or transported over a Network.Later time the Object will changed into its original state with there server process of deserialization.Microsoft.NET support both...
how to add web servicein C# application
You can easily add web service to the application by add reference in C#In the solution explorer right click the project and click add reference and select add web reference thentype the URL of the web service that you would like to add to the web applicationfor example: http://localhost/Service1/Service1.asmx now you just need to refer this service like this:localhost.HelloWebServiceinC MyService...
Thursday, June 29, 2006
how to exeute stored procedure with partmeter in asp.net 1.1(
Following are the stored procedure that will get transaction data from database
and fill it in to the sql adapter and data set. it has four parameter.
SqlAdpt=new SqlDataAdapter("sp_getTransactionData",this.Con);
SqlAdpt.SelectCommand.CommandType=
System.Data. CommandType.StoredProcedure;
SqlAdpt.SelectCommand.Parameters.Add(new SqlParameter("@boid",System.Data.SqlDbType.NVarChar,16) );
SqlAdpt.SelectCommand.Parameters["@boid"].Value=
boid.Trim().ToString();
SqlAdpt.SelectCommand.Parameters.Add(new...
Microsoft.NET interview question
Here are list of some cool site from which you can found the Microsoft.NET Interview Question
1) http://vyaskn.tripod.com/
2) http://www.dotnetspider.com/
3) http://techinterviews.com/
4) http://www.vyomworld.com/
5) http://weblogs.asp.net/sbehera/archive/2005/02/25/380155.aspx
6) http://www.geekinterviews.com/
7) http://blogs.crsw.com/mark/articles/254.a...
Wednesday, June 28, 2006
Learn Visual Studio.NET 2005 with express edition
You can learn Microsoft.NET with the express edition sql server 2005 database and visual studio Ide expression edition. It is free and available for the down load. It provide almost
functionality as professional IDE.
To download SQL Server 2005 Express Edition:
http://msdn.microsoft.com/vstudio/express/sql/default.aspx
To download VB.NET 2005 Express Edition:
http://msdn.microsoft.com/vstudio/express/vb/
To...
Bill Gets -Retired
Micorsoft Co-Founder and Chairman bill gates announced that he retired from his day to day role and and his position from Microsoft till 2008 and will concentrate his charity work Bill and Melinda Foundation His Role in software company will be slowly step down day by day.After Bill Gates Steve Blamer takes charge of the Microsoft.
Following was his announcement:
“Our business and technical leadership...
General Error Class for ASP.NET
#Region "NameSpace"Imports System#End RegionNamespace Abc.ErrorPublic Class CustomError#Region "Declartion"Private Shared _errorno As IntegerPrivate Shared _errorname As IntegerPrivate Shared _errordescription As StringPrivate Shared _errorsource As String#End Region
#Region "Properties"Public Shared Property ErroNo() As IntegerGetErroNo = _errornoEnd GetSet(ByVal Value As Integer)_errorno = ValueEnd...
Tuesday, June 27, 2006
How to disable right click in Ms WebBrowser Control of VB/C#.NET 2005
I have researched a lot about disabling the right click in web browser control for C# and VB.NET 2005 lot but i have found a simple solution.
It has a property called IsWebBrowserContextMenuEnabled just set it to False. It will disable the right click in web browser control.
Isn't that easy. Stay tuned for more!!...
ASP.NET 2.0- How to Videos
ASP.NET How to videos are great tutorial for learning from basics of asp.net. It is easily understandable and Very rich Explanation with practical example is there..
There are 11 video there containing different topics. Such as
1) Data Handling
2) Master Pages and site navigation
3) Full Feature customer login portal
4) Building Contact Us Page
5) Web Parts and Personalization
6) Caching (Part...
Whats new in ASP.NET 2.0 Part 3
This will be my third post about what's new in asp.net 2.0.
Data Controls: Data access the can be done without writing any code in asp.net 2.0.It can be easily done by new back support providers.The new controls like sqldatasource and oledbdatasource provide great functionality to manipulate data without the writing the code.
Expression Builders:ASP.NET 2.0 provide the great facility and new syntax...
Developing 3-Tier application Using ASP.NET
Any one can develop 3-Tier application in ASP.NET very easily.It contains 3-tier each one is separate from the each other. I
1) Data Tier: Data Tier contains database and database related code and logic Such as Methods,Queries,Stored Procedure and Classes for the Database Connectivity and Database Operation. It is the foundation of any data centric web application.
2) Business Tier: In this tier...
What's new in ASP.NET 2.0 Part -2
This will be another post of my asp.net 2.0 series.
Login Controls:Login controls provide basic functionality for login and authentication of the site. It provides basic UI such as login panel,create user forms,staus of user. This control uses built in
functionality role and member services of ASP.NET 2.0
Web Parts:Web part is exciting new controls with rich content and drag and drop functionality.End...
Monday, June 26, 2006
What's new in ASP.NET 2.0-Part 1
Since It's First Release ASP.NET is a powerful web development plate from for creating high performance powerful websites and web services.
With the release of the ASP.NET 2.0, Microsoft has improved it web development platform from foundation via several new and exiting features in the areas of developer productivity,fast development,project management,security and performance.
Let's look several...
www.snap.com-See the snap of search results
Today, I have found a new site called the http://www.snap.com/ which is a great site with the Ajax features. It is search engine that will also provide the snap of search result site. I think this is one of most interesting things that I have found and I think it's worth to share this with you.
When you search some thing. And place a mouse on search result it will display a snap of the
that site...
Wednesday, April 26, 2006
Google,MSN,Yahoo ranking
I have created this blog for just for fun but after someday I found that it will be great to have blog to share your rankings. This blog will be collection of my technical adventures. So it will be fun.
Today I got the top rankings on MSN,Google,Yahoo for this blog. It was one of the most memorable moment in my life. I have already started working towards my new site.
For Google Visit: (7th...