Fibonacci





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

7
Three little functions to return the Windows Identity, The Envoronment Identoty and the Environment Domain.
7
This class allows the developer to change the current impersonated user. This is not my code originally, so I cannot take credit for it. I thought it may be useful to someone so I am posting it here.
5
Date Submitted Fri. Jan. 26th, 2007 1:54 AM
Revision 1
Scripter i_kenneth
Tags "CSharp" | "impersonation" | "security"
Comments 0 comments
With this simple class you can run som code with others user accounts.
How to use:

// ...some code
using(Impersonator user = new Impersonator("domain", "user", "pswd"))
{
// This run with new credentials.
}
// ... more code
2
Date Submitted Mon. Apr. 16th, 2007 11:19 PM
Revision 1
Beginner leroi
Tags "CSharp"
Comments 2 comments
Shows how to download a file using the BackgroundWorker Pattern in C# with the .net 2.0 framework. Next will be a wrapper that harnesses this object to create a multi-segmented file downloading manager utility!
1
Date Submitted Wed. Oct. 29th, 2008 1:58 AM
Revision 1
Beginner mycodeofshailendra
Tags "CSharp"
Comments 0 comments
The following is function how to get selected value from asp checkboxlist
1
Date Submitted Wed. Oct. 29th, 2008 5:23 AM
Revision 1
Beginner mycodeofshailendra
Tags "CSharp"
Comments 0 comments
File Uploading in ASP.Net Using C#
-8
Date Submitted Fri. Mar. 10th, 2006 9:29 AM
Revision 1
Helper ses5909
Tags "ASP.NET 2.0" | C | VB.NET
Comments 2 comments
Databinding in asp.net 2.0 is takes very few lines of code.
-7
Date Submitted Fri. Mar. 10th, 2006 9:32 AM
Revision 1
Helper ses5909
Tags "ASP.NET 2.0" | C | VB.NET
Comments 2 comments
Databinding in asp.net 2.0 takes very few lines of code. This example shows how to bind a CheckBoxList using a SqlDataSource.
4
Date Submitted Sat. Apr. 22nd, 2006 11:17 AM
Revision 4
Beginner Utsawin
Tags "ASP.NET 2.0" | combinations | factorials | math | permutations
Comments 3 comments
Go easy on me, my first snippet - plus I am new to VB.NET 2.0... with only basic knowledge of classic VB... Just want to mention that the Permutations function is not actually mine - found it online... (credit where credit's due)

Fairly simple stuff, but had me pulling my hair out - Even Excel has a COMBI function out of the box!