Microsoft.com
All DevCenters
MSDN Home
MSDN Code Gallery:
Code Gallery Home
|
Browse Gallery
|
Share Code
|
Help and FAQs
IT Mastering
Home
Downloads
Discussions
People
License
Close
RSS
All Resource Updates
Discussions
Releases
Wiki
RSS
Discussions List
|
Create New Discussion
1-10
of
14
< Previous
Next >
Discussions for IT Mastering
Latest post:
Oct 21
5:49 AM
1 Post
.Net and DataGram
First post:
Jimmy_Ye
wrote: Hi All, I would like to know about DataGram and .Net.
Jump to:
First Post
Latest post:
Jun 30
9:28 PM
1 Post
How to backup & restore site collection using stsadm command tool
First post:
mostafa_alshimi
wrote: Using stsadm you can backup & restore a site collection To backup Stsadm –o backup –url <SiteURL> -filename <FileName> To restore Stsadm –o restore –url <restoretoURL> -filename <filet...
Jump to:
First Post
Latest post:
May 20
8:21 AM
1 Post
How to know the requesting ip in asp.net and authenticate it
First post:
mostafa_alshimi
wrote: To know who is requesting your asp.net site you can know it from HttpRequest of current HttpContext if(HttpContext.Current.Request.UserHostAddress=="h
ttp://192.129.2.1") { //Authenticate...
Jump to:
First Post
Latest post:
May 20
8:18 AM
1 Post
How to change the current identity in asp.net
First post:
mostafa_alshimi
wrote: To change the current identity(user) in asp.net ,here is a sample of code System.Security.Principal.GenericIdentity id = new System.Security.Principal.GenericIdentity("Mustafa Refai"); ...
Jump to:
First Post
Latest post:
May 20
8:15 AM
1 Post
How to Create Custom attribute
First post:
mostafa_alshimi
wrote: To create a custom attribute for classes , methods or properties you have to create a new class inheriting from System.Attribute This is a sample for a custom attribute class {"[Attribut...
Jump to:
First Post
Latest post:
May 4
1:40 PM
1 Post
Change assigned to for workflow task outside the workflow
First post:
mostafa_alshimi
wrote: Unfortunally, AssignedTo field is a read only field so if you want to change the value of this field you have to do this work around First, you have to update the task from the applicati...
Jump to:
First Post
Latest post:
May 4
1:32 PM
1 Post
Simple Encryption and Decryption
First post:
mostafa_alshimi
wrote: protected string EncryptString(string eString) { Byte[] b = System.Text.ASCIIEncoding.ASCII.GetBytes(eString); string es = Convert.ToBase64String(b); ...
Jump to:
First Post
Latest post:
Mar 30
12:30 PM
1 Post
Get List and Item of workflow task
First post:
mostafa_alshimi
wrote: To get item id of a workflow task workflowItemID=(int)item["ows_WorkflowItemId"];//i
tem is the SPListItem that represents the task To get list guid of a workflow task {"listGuid=ne...
Jump to:
First Post
Latest post:
Mar 30
7:34 AM
1 Post
Update workflow task from UI or external code
First post:
mostafa_alshimi
wrote: When you are about to change workflow task properties or update it outside the event of UpdateTask inside the workflow it will through exception that "Can not update the task because it i...
Jump to:
First Post
Latest post:
Mar 17
12:17 PM
1 Post
Using chaching in class library
First post:
mostafa_alshimi
wrote: It is common to use caching in ASP.Net forms, but what if you want to use it in class library? You will have to add System.Web refrence and then use the caching like this {"System.Web.H...
Jump to:
First Post
Configure View
Sorted by
Latest post
Search
Filter
(by tag)
All tags
1-10
of
14
< Previous
1
2
Next >
Show
10
25
All
discussions
View All (http://code.msdn.microsoft.com/itmastering/Thread/List.aspx?ViewAll=true)
Manage Your Profile
Legal
Contact Us
MSDN Flash Newsletter
© 2008 Microsoft Corporation. All rights reserved.
Terms of Use
Trademarks
Privacy Statement
Updating...