31.3.10
Nokia latest Series
http://dailymobile.se/2009/02/16/nokia-announce-new-e-series-phone-nokia-e75-and-e55/
Processors
Types
There are two primary manufacturers of computer microprocessors. Intel and Advanced Micro Devices (AMD) lead the market in terms of speed and quality. Intel's desktop CPUs include Celeron, Pentium, and Core. AMD's desktop processors include Sempron, Athlon, and Phenom. Intel makes Celeron M, Pentium M, and Core mobile processors for notebooks. AMD makes mobile versions of its Sempron and Athlon, as well as the Turion mobile processor which comes in Ultra and Dual-Core versions. Both companies make both single-core and multi-core processors.
Each processor has a clock speed which is measured in gigahertz (GHz).
A microprocessor is a silicon chip containing millions of microscopic transistors.
Latest processors:
http://www.intel.com/products/processor/index.htm
http://www.intel.com/products/processor/corei7ee/specifications.htm
There are two primary manufacturers of computer microprocessors. Intel and Advanced Micro Devices (AMD) lead the market in terms of speed and quality. Intel's desktop CPUs include Celeron, Pentium, and Core. AMD's desktop processors include Sempron, Athlon, and Phenom. Intel makes Celeron M, Pentium M, and Core mobile processors for notebooks. AMD makes mobile versions of its Sempron and Athlon, as well as the Turion mobile processor which comes in Ultra and Dual-Core versions. Both companies make both single-core and multi-core processors.
Each processor has a clock speed which is measured in gigahertz (GHz).
A microprocessor is a silicon chip containing millions of microscopic transistors.
Latest processors:
http://www.intel.com/products/processor/index.htm
http://www.intel.com/products/processor/corei7ee/specifications.htm
30.3.10
String split C#
1.)string split C#
string str = null;
string[] strArr = null;
int count = 0;
str = "CSharp split test";
char[] splitchar = { ' ' };
strArr = str.Split(splitchar);
for (count = 0; count < = strArr.Length - 1; count++)
{
MessageBox.Show(strArr[count]);
}
2.)RELACE STRING
string str = "This test";
// Replace string
str = str.Replace("is", "was");
3.)
string str = null;
string[] strArr = null;
int count = 0;
str = "CSharp split test";
char[] splitchar = { ' ' };
strArr = str.Split(splitchar);
for (count = 0; count < = strArr.Length - 1; count++)
{
MessageBox.Show(strArr[count]);
}
2.)RELACE STRING
string str = "This test";
// Replace string
str = str.Replace("is", "was");
3.)
MAX and MIN of Datetime
SELECT Id, Min(Time) as MinTime, Max(Time) as MaxTime FROM Frames GROUP
by Id
by Id
Saving xml data into database sql 2005
http://www.developer.com/net/net/article.php/3406251/Work-with-XML-Data-Type-in-SQL-Server-2005-from-ADONET-20.htm
25.3.10
20.3.10
Migrate MySQL to Microsoft SQL Server
http://www.codeproject.com/KB/database/migrate-mysql-to-mssql.aspx
19.3.10
16.3.10
Encrypt and decrypt query string easy for whole website
http://forums.asp.net/p/1118844/1741448.aspx
14.3.10
Instant SQl formater
Instant SQl formater
http://www.dpriver.com/pp/sqlformat.htm
write sql fast
http://www.sqlservercentral.com/articles/Product+Reviews/3050/
sql performance
http://www.sql-server-performance.com/tips/t_sql_where_p1.aspx
http://www.dpriver.com/pp/sqlformat.htm
write sql fast
http://www.sqlservercentral.com/articles/Product+Reviews/3050/
sql performance
http://www.sql-server-performance.com/tips/t_sql_where_p1.aspx
Write mail c#
Sending Email using C# and ASP.Net 2.0
http://www.codedigest.com/Articles/ASPNET/95_Sending_Email_using_C__and_ASPNet_20.aspx
Write body HtML with string builder
http://www.dotnetspider.com/forum/162323-How-write-Html-tags-email-body.aspx
http://www.codedigest.com/Articles/ASPNET/95_Sending_Email_using_C__and_ASPNet_20.aspx
Write body HtML with string builder
http://www.dotnetspider.com/forum/162323-How-write-Html-tags-email-body.aspx
call 2 javascript functions on click of single html button
input type="button" value="Calculate" onClick="(func1(), func2() )" >
CMS(Content management system)
List of content management systems
http://en.wikipedia.org/wiki/List_of_content_management_systems
Beer House CMS
http://thebeerhouse.codeplex.com/releases/view/33900
http://en.wikipedia.org/wiki/List_of_content_management_systems
Beer House CMS
http://thebeerhouse.codeplex.com/releases/view/33900
Convert SQL Server 2008 to SQL Server 2005
1.)Convert SQL Server 2008 to SQL Server 2005
http://www.hyper-v-mart.com/HowTo/Convert_SQL_Server_2008_to_SQL_Server_2005.aspx
2.)With data:
1) Right click the database in sql 2008 which you want to do with
2) Choose Task and Generate script
3) Make sure select "script all objects in the database"
4) In the Script Option, choose the item Script for SQL server version to SQL2005
and Script data to be true! Those two are the key steps!
5) Here you go to check the generated script. You should find out insert statement for inserting the data
3.)Debugging Stored Procedures in Visual Studio 2005
http://www.sqlteam.com/article/debugging-stored-procedures-in-visual-studio-2005
4.)Call Stored procedure from within another stored procedure, return values
http://www.aspfree.com/c/a/ASP.NET-Code/Call-Stored-procedure-from-within-another-stored-procedure-return-values/
5.) Differences between varchar and nvarchar in SQL Server
http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1266201,00.html
6.) Calling functions in sql.
http://www.functionx.com/sqlserver/functions/create.htm
http://www.hyper-v-mart.com/HowTo/Convert_SQL_Server_2008_to_SQL_Server_2005.aspx
2.)With data:
1) Right click the database in sql 2008 which you want to do with
2) Choose Task and Generate script
3) Make sure select "script all objects in the database"
4) In the Script Option, choose the item Script for SQL server version to SQL2005
and Script data to be true! Those two are the key steps!
5) Here you go to check the generated script. You should find out insert statement for inserting the data
3.)Debugging Stored Procedures in Visual Studio 2005
http://www.sqlteam.com/article/debugging-stored-procedures-in-visual-studio-2005
4.)Call Stored procedure from within another stored procedure, return values
http://www.aspfree.com/c/a/ASP.NET-Code/Call-Stored-procedure-from-within-another-stored-procedure-return-values/
5.) Differences between varchar and nvarchar in SQL Server
http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1266201,00.html
6.) Calling functions in sql.
http://www.functionx.com/sqlserver/functions/create.htm
13.3.10
Shortcut keys
1.)Remote desktop connection::
click ’start’ -> ‘Run…’ -> type ‘mstsc‘ in and click OK-> then you have it –
2.)Asp.net::
http://nerdfortress.s3.amazonaws.com/visual-studio-2008-keyboard-shortcuts.html
click ’start’ -> ‘Run…’ -> type ‘mstsc‘ in and click OK-> then you have it –
2.)Asp.net::
http://nerdfortress.s3.amazonaws.com/visual-studio-2008-keyboard-shortcuts.html
12.3.10
11.3.10
Multiple file upload like gmail with jquery
http://www.aspsnippets.com/Articles/Multiple-File-Uploads-Gmail-Style-using-JQuery-and-ASP.Net.aspx
8.3.10
Installing Silverlight 3.0 without errors is easy
Video:http://www.silverlight.net/learn/videos/silverlight-videos/getting-started-with-silverlight-development/
------------------------------------------------------
http://www.dotnetcurry.com/ShowArticle.aspx?ID=293
------------------------------------------------------
http://www.dotnetcurry.com/ShowArticle.aspx?ID=293
3.3.10
Norton ghost for window XP service pack 2
1.)http://service1.symantec.com/SUPPORT/powerquest.nsf/643c9edb8e8f93b788256ee00056a108/b424ef724f0b431788256f2d0060e03d?OpenDocument&src=bar_sch_nam
http://www.youtube.com/watch?v=C47pKqb9uzQ
http://www.youtube.com/watch?v=9ASeO8vTh58&NR=1
http://www.youtube.com/watch?v=C47pKqb9uzQ
http://www.youtube.com/watch?v=9ASeO8vTh58&NR=1
Subscribe to:
Posts (Atom)