Forum: ASP.NET 1 Day Ago |
| Replies: 0 Views: 119 Hi,
I am trying to create a mailbox on exchange server 2007 using power shell command via ASP.NET page. I am using windows impersonation to do this. I ma able to connect to my exchange server box... |
Forum: MS SQL Sep 21st, 2009 |
| Replies: 3 Views: 481 Well I resolve this issue by using a table with just one field ID and made it IDENTITY and set its max value to 999 and then used the following procedure to get the next number for 3 digit number... |
Forum: MS SQL Sep 15th, 2009 |
| Replies: 3 Views: 481 Hi All SQL Gurus,
I am working on a project for a college. I have to generate a unique student Id for each student. I know I can use IDENTITY column to achieve this but I have rather... |
Forum: ASP.NET Jun 15th, 2009 |
| Replies: 6 Views: 683 Thankx for your suggestion.
It resolve the issue with both IIS and SQL Server 2005 on same machine. |
Forum: ASP.NET Jun 12th, 2009 |
| Replies: 6 Views: 683 Hi,
I have hosted a website that has MSSQL Server 2005 database on different machine. I am using the following connection string
<add name="ConnectionString"... |
Forum: C# Jan 19th, 2009 |
| Replies: 2 Views: 298 use ASP.NET AJAX Extension or simply the AJAX toolkit .
http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx |
Forum: C# Jan 18th, 2009 |
| Replies: 5 Views: 2,858 It is definitely a DLL problem. Your server and local machine may not be using the same version of Oledb. |
Forum: C# Jan 16th, 2009 |
| Replies: 4 Views: 659 Array get instantiated when you create it with new keyword:
integers = new int[10]; // size array
declaration can just create a reference.
int[] integers; // declare array |
Forum: C# Jan 15th, 2009 |
| Replies: 3 Views: 1,148 use RegularExpression validators or simply set textbox's maxlenght property to 12 and 8 respectively. |
Forum: C# Jan 14th, 2009 |
| Replies: 2 Views: 1,644 Put
Console.ReadLine() when your app is exiting while loop. By that way you can keep your app running till user enter something. |
Forum: C# Jan 14th, 2009 |
| Replies: 2 Views: 3,041 New in ASP.NET is GridView and DataList.
AJAX Extension |
Forum: C# Jan 14th, 2009 |
| Replies: 3 Views: 679 There is minimul documentation from 3rd party and that just suggest use adVarchar as input parameters of fields with width of 50. and takes in RecordSet as referenced input parameter.
Is there a... |
Forum: C# Jan 14th, 2009 |
| Replies: 3 Views: 679 Hi there,
I am using third party ActiveX control in my application. It requires RecordSet as a input parameter to its method. I am programming my application in C#. When I call the method after... |