You Tube

Monday, 19 December 2011

Access Sql Server database in LAN, Solution for error 1326

Alok Singh
Here u need to add a port in fire wall...

go for firewall advance setting.
and here choose inbond rules,
Set new Rule for port.
add port number:1433
Name it "SQL"...

Saturday, 17 December 2011

Login failed for user 'IIS APPPOOL\ASP.NET v4.0'.

Open SQL Server Management and
In the object Explorer Expend Login
here you need to add a login named "IIS APPPOOL\ASP.NET v4.0" without inverted Commas.
then in the Login Property provide appropriate role, "I provided System Admin".
and In User mapping option select appropriate databases for that Login...

Alok Singh

Sunday, 4 December 2011

Blocking Facebook in local network

I m a big fan of mark zuckerberg & i also understand your requirement. So i only can hint u about this. Not full way.
For this u need to set filters on Router.

Wednesday, 9 November 2011

Retrieving Name of Current User

protected void retUser()
{
MembershipUser u = Membership.GetUser(HttpContext.Current.User.Identity.Name);
Label1.Text = u.UserName;
}

Note: But First Check that the User is Login...
Alok Singh

Tuesday, 18 October 2011

Data binding

DataGrid and DataList (among other controls) iterate over a collection automatically and render some HTML for each item (you specify the layout using templates). The automatic data binding of collections works for the following controls: HtmlSelect, CheckBoxList, DataGrid, DataList, Repeater, DropDownList, ComboBox, ListBox, and RadioButtonList. Each of these controls will automatically bind to the following classes representing collections: Array, ArrayList, HashTable, Queue, SortedList, Stack, StringCollection, DataView, DataTable, DataSet, SqlDataReader, and the OleDbDataReader.
Each of the controls I just listed (including DataGrid and DataList) include a property named DataSource. The DataSource property can be any System.Object, but for the data binding to work over a collection, it has to implement IEnumerable.

Tuesday, 4 October 2011

Beware of Security Holes

In our System(Life) there are many security holes that flow the information that u don't want to keep in public places. Beware of this Security Holes. these are in your real life.

Thursday, 1 September 2011

Technology is the solution for all kind of problems: XSLT

Technology is the solution for all kind of problems: XSLT: Table 7.1 XSLT Elements XSLT Element Description xsl:apply-imports Used in conjunction with imported style sheets to override ...