February 26, 2008 – 10:12 am
©2008 Microsoft Corporation. All rights reserved.
ASP.NET
How to: Access SQL Server Using Windows Integrated Security
http://msdn2.microsoft.com/en-us/library/72wdk8cc(printer).aspx
If your application runs on a Windows-based intranet, you might be able to use Windows integrated authentication for database access. Integrated security uses the current Windows identity established on the operating system thread to access the SQL Server database. You can then [...]
February 25, 2008 – 10:25 am
http://www.sqlservercentral.com/articles/T-SQL/61979/
Printed 2008/02/25 03:23AM
Changing a Non-IDENTITY column to IDENTITY and vice versa
By Thomas Pieries, 2008/01/16
Changing from Non-IDENTITY to IDENTITY and vice versa
In my career I have come across many situations where it was required to include/remove the Identity Property to/from a column at a latter stage of the development cycle due to [...]
February 25, 2008 – 9:07 am
Source : http://web4health.info/en/answers/ed-treat-behave-change.htm
If you want to solve your problems, you must be active and this often involves changing your habits and ways of thinking.
For example, you may want to reduce your weight, find a better job, complete a difficult task, or change your relations to other people.
These problems are difficult and extensive. To be successful, [...]
February 5, 2008 – 2:32 pm
Source : http://forums.asp.net/p/839953/840084.aspx
This example shows how to validate the LastName textbox but only if the FirstName textbox contains a value. The first part is simply HTML tags with the form controls, the second part is simply the code for “onblur” even in the Page_Load event handler.
FIRST HTML
*****************************************************************************
<%@ Page Language=”vb” AutoEventWireup=”false” Codebehind=”WebForm1.aspx.vb” Inherits=”ValidationChange.WebForm1″%>
<!DOCTYPE HTML PUBLIC “-//W3C//DTD [...]
February 5, 2008 – 2:31 pm
I will try to explain the difference between RegisterClientScriptBlock and RegisterStartupScript . I have experienced the difference while I was doing some stuffs yesterday. Here is what I was doing. I had a hidden field called txtHiddenField, an update button and some tabs in my page. I also have a javascript function called DisplayTab.
function DisplayTab(tabId)
{
var [...]