Loading ...
ASP.NET Blogs | CodeAsp.Net
home
browse
articles
blogs
events
forums
jobs
people
wiki
Login
Register
×
Choose a location:
home
articles
forums
blogs
jobs
events
wiki
people
home
»
blogs
»
blogs
blogs
most recent
Most viewed
Highest rated
Most commented
Series of ASP.NET vNext articles
In the past ten days, Scott Guthrie has started series of ASP.NET vNext articles where he shows some
Hajan Selmani
· 9/9/2011 ·
0
·
950
ASP.NET; Series;
0
/5
Avg:
0
/5: (
0
votes)
Microsoft BUILD Conference for Windows 8
In 1995, Windows changed the PC. BUILD will show you that Windows 8 changes everything. This is the
Hajan Selmani
· 9/9/2011 ·
0
·
1045
Microsoft; Conference; Community Event;
4.81
/5
Avg:
4.81
/5: (
1
votes)
Throw multiple exceptions in same time
Using try catch finally blocks is very recommended practice in order to handle exceptions properly.
Hajan Selmani
· 8/17/2011 ·
3
·
1562
C#; .NET; Exceptions; Multiple Exceptions;
4.87
/5
Avg:
4.87
/5: (
2
votes)
ALTER TABLE DROP COLUMN xxx failed because one or more objects access this column.
I was dropping a column today from a table and I got the following error ALTER TABLE DROP COLUMN xxx
Raghav Khunger
· 8/12/2011 ·
0
·
4365
ALTER TABLE DROP COLUMN xxx failed because one or more objects access this column.
0
/5
Avg:
0
/5: (
0
votes)
SQL: Add a column with a default value in existing table
Few minutes back I was working with a table in my DB and I wanted to add a new column with a default
Raghav Khunger
· 8/12/2011 ·
0
·
1816
SQL Add a column with a default value in existing table
0
/5
Avg:
0
/5: (
0
votes)
IE Microsoft JScript runtime error: 'JSON' is undefined
Recently while working with some JavaScript code, I encountered an error in IE7 "IE Microsoft JScrip
Raghav Khunger
· 8/11/2011 ·
0
·
5246
IE Microsoft JScript runtime error: 'JSON' is undefined
JSON.stringify
0
/5
Avg:
0
/5: (
0
votes)
Convert .NET serialized JSON DateTime to JavaScript Date object
Yesterday I posted a blog about Serializing specific class properties to JSON string using JavaScrip
Hajan Selmani
· 8/10/2011 ·
0
·
4042
JavaScript; JavaScriptSerializer; JSON; C#; DateTime; Serialization; RegEx;
4.54
/5
Avg:
4.54
/5: (
2
votes)
JavaScript: Prototype is not overriding the function/method
Always the output of this code will be : function Test() { this.foo = function() { console.log('base
Raghav Khunger
· 8/7/2011 ·
0
·
1248
JavaScript Prototype is not overriding the function/method
0
/5
Avg:
0
/5: (
0
votes)
C#: DateFormat separator issue with ToString() method
Today I was working with some dates and I encountered an issue while converting date to string. I no
Raghav Khunger
· 8/2/2011 ·
0
·
3563
C# DateFormat separator issue with ToString() method
0
/5
Avg:
0
/5: (
0
votes)
SageFRame- A new asp.net based open source web development framework
Introduction: I’m taking this opportunity to make the members of this group informed about thi
sandip karki
· 8/22/2011 ·
0
·
1499
.net CMS
asp.net cms
ASP.NET framework
0
/5
Avg:
0
/5: (
0
votes)
ASP.NET: Check a directory exists and create it if doesn't exists
Today I was working with a code where I needed to check whether a physical directory exists or not a
Raghav Khunger
· 8/2/2011 ·
0
·
1839
ASP.NET Check a directory exists and create it if doesn't exists
4.81
/5
Avg:
4.81
/5: (
1
votes)
C#: Convert a string having comma separated integers to an array of integers
Today I saw a person on forums asking this " Convert a string having comma separated integers to an
Raghav Khunger
· 7/31/2011 ·
0
·
5444
C# convert a string having comma separated integers to an array of integers
4.81
/5
Avg:
4.81
/5: (
1
votes)
Using IsNullOrWhiteSpace in .NET 3.5
Today when I was working with one of my C# application I needed to use IsNullOrWhiteSpace method. Yo
Raghav Khunger
· 7/31/2011 ·
0
·
2661
Using IsNullOrWhiteSpace in .NET 3.5
0
/5
Avg:
0
/5: (
0
votes)
JavaScript: How to deep copy an object
Today I was working with my client side code where I needed to do a deep copy of JavaScript object.
Raghav Khunger
· 7/16/2011 ·
0
·
1945
JavaScript How to deep copy an object
0
/5
Avg:
0
/5: (
0
votes)
What is the maximum size of Stack in IIS
Stack is a memory kept as a separate space for a particular thread execution. Today a person asked m
Raghav Khunger
· 7/16/2011 ·
0
·
2062
What is the maximum size of Stack in IIS
0
/5
Avg:
0
/5: (
0
votes)
Create strong named assembly without compiling
In a recent project, we had to create strong named version of two assemblies (A and B, where A refer
Vivek Thakur
· 7/8/2011 ·
2
·
1700
error while referencing strong named assemblies
strongly typed assemblies
4.81
/5
Avg:
4.81
/5: (
1
votes)
ASP.NET: Use tild in HTML controls without runat server
A person asked me today that whether we can use tild(~) with HTML controls on ASP.NET pages without
Raghav Khunger
· 7/6/2011 ·
1
·
1578
ASP.NET Use tild in HTML controls without runat server
4.81
/5
Avg:
4.81
/5: (
1
votes)
jQuery: Select the first item of dropdownlist
Today a person asked aquestion on the forums on how to select the first item of dropdownlist with jQ
Raghav Khunger
· 7/6/2011 ·
0
·
3124
jquery select the first item of dropdownlist
0
/5
Avg:
0
/5: (
0
votes)
C#: DateTime to Midnight datetime
DateTime endTime = DateTime . Now ; endTime . Subtract ( endTime . TimeOfDay );
Raghav Khunger
· 8/4/2011 ·
0
·
2090
C# DateTime to Midnight datetime
0
/5
Avg:
0
/5: (
0
votes)
How to read a text file as string in C#
Assume you have a text file, and you want to read all its contents into a C# string variable. Here i
Vivek Thakur
· 7/5/2011 ·
0
·
1708
c#
read text file as string
0
/5
Avg:
0
/5: (
0
votes)
ASP.NET: Disable autocomplete for a textbox
MyTextBox.cs (Custom control) code: public class MyTextBox : TextBox { #region Properties /// <su
Raghav Khunger
· 7/3/2011 ·
0
·
4672
ASP.NET disable autocomplete for a textbox
0
/5
Avg:
0
/5: (
0
votes)
C#: Check a number falls in which set of ranges
Today I was in a need where I need to check in which set of ranges my input number falls. I was havi
Raghav Khunger
· 7/3/2011 ·
0
·
1821
C# check a number fall in which set of ranges
determine the number falls in set of ranges
0
/5
Avg:
0
/5: (
0
votes)
SQL Server: Rename a table
Yesterday a person asked me on the forums on how to rename a table in SQL Server. I told him the scr
Raghav Khunger
· 7/3/2011 ·
0
·
1350
Change the name of table in SQL Server
How to rename a table in SQL Server
SQL Server Rename a table
0
/5
Avg:
0
/5: (
0
votes)
I am Microsoft MVP now!
This is the greatest moment of my professional life! I have been awarded Microsoft MVP for ASP.NET/I
Hajan Selmani
· 7/27/2011 ·
8
·
1624
MVP; Microsoft; ASP.NET; IIS; Community News;
0
/5
Avg:
0
/5: (
0
votes)
SQL SERVER - Fix: Error: 262 : SHOWPLAN permission denied in database
USE master GO GRANT SHOWPLAN TO test GO
Raghav Khunger
· 7/3/2011 ·
0
·
3022
SQL SERVER - Fix: Error: 262 : SHOWPLAN permission denied in database
0
/5
Avg:
0
/5: (
0
votes)
Page 8 of 40 (990 items)
« Previous
3
4
5
6
7
8
9
10
11
12
13
Next »
Go to page:
[Go]
Filter blogs
Tags
asp.net
c%23
jquery
Sql
javascript
regex
wcf
iis7
.net
.net-4
IIS
SQL+Server
textbox
sql-server
regular+expression
HTML
form-authentication
visual-studio
windows-7
windows-authentication
Category
--- all categories
Microsoft.NET
Project Management
Publish date
Top Producers
Raghav Khunger
504 Blogs
Vivek Thakur
134 Blogs
Hajan Selmani
79 Blogs
Vijendra Shakya
46 Blogs
mohit kumar
40 Blogs
Vinay Gupta
22 Blogs
Tim Eisenhauer
20 Blogs
Sumit Arora
18 Blogs
Ajit Gupta
16 Blogs
Shaitender Singh
14 Blogs
Blog Archives
May 2013 (6)
April 2013 (14)
March 2013 (3)
February 2013 (14)
January 2013 (8)
December 2012 (4)
November 2012 (7)
October 2012 (17)
September 2012 (10)
August 2012 (19)
July 2012 (24)
May 2012 (5)
April 2012 (1)
March 2012 (1)
February 2012 (5)
January 2012 (3)
December 2011 (5)
November 2011 (12)
October 2011 (7)
September 2011 (12)
August 2011 (9)
July 2011 (14)
June 2011 (17)
May 2011 (7)
April 2011 (8)
March 2011 (6)
February 2011 (26)
January 2011 (15)
December 2010 (24)
November 2010 (31)
October 2010 (27)
September 2010 (34)
August 2010 (27)
July 2010 (29)
June 2010 (33)
May 2010 (24)
April 2010 (17)
March 2010 (8)
February 2010 (2)
January 2010 (2)
December 2009 (28)
November 2009 (39)
October 2009 (29)
September 2009 (17)
August 2009 (36)
July 2009 (33)
June 2009 (65)
May 2009 (40)
April 2009 (25)
March 2009 (33)
February 2009 (13)
January 2009 (36)
December 2008 (34)
November 2008 (1)
March 2008 (15)
December 2007 (1)
March 2007 (8)
Quick Vote
What kind of email newsletter would you prefer to receive from CodeAsp.Net?
18
A monthly digest
A weekly digest
A daily digest
All of the above
None of the above
×
Loading ...