Team Foundation Server
- Customizing Team Foundation Server 2013: Work Items and Custom Controls
- Lotus Notes to Team Foundation Server
ASP.NET Web API
Azure
ASP.Net
- Encrypt and Decrypt Web.Config
- Advanced Customization in ASP.Net Dynamic Data
- Customization in ASP.Net Dynamic Data
- Routing in ASP.Net Dynamic Data
- ASP.Net Dynamic Data
- Encrypt and Decrypt Web.Config
ASP.Net MVC
Workflow Foundation 4.0
- Workflow Foundation 4.0 – WorkflowApplication Actions
- Workflow Foundation 4.0 – Validation
- Workflow Foundation 4.0 – Type Converter
- Workflow Foundation 4.0 – PersistenceParticipant
- Workflow Foundation 4.0 – PropertyValueEditor
- Workflow Foundation 4.0 – WCF Integration
- Workflow Foundation 4.0 – Persistence
- Workflow Foundation 4.0 – Extension
- Workflow Foundation 4.0 – BookMark
- Workflow Foundation 4.0 – Custom Activity
- Workflow Foundation 4.0 – Activity Designer
Visual Studio 2010
Visual Studio 2012
- Asynchronous programming – async & await
- Visual Studio 2012 Features – Quick Launch
- Visual Studio 2012 Features–Code Clone Analysis
- Visual Studio 2012 Features – Extract To User Control
- Visual Studio 2012 Features – SQL Server Object Explorer
Visual Studio LightSwitch
Performance Test using Visual Studio
- Visual Studio : Generic Test
- Web Performance Test Using Visual Studio – Part III
- Web Performance Test Using Visual Studio – Part II
Entity Framework
Feature Builder
SQL Server
C# or Windows
Windows 8
- Windows 8 – background Processing
- Windows Store App Contracts
- Windows 8 App Features – App Bar
- Windows 8 App Features – App Bar Advanced
WPF
Others
Hi Ambily kk
I am ayub i am .net developer i want full detail sabout Dynnamic data
Hi Ambily kk
I am ayub i am .net developer i have 1 yer exp in web application can i lern Dynami data i want full detail about Dynnamic data could you plez.. provi detils
Thanq
Ayub
Hi Ayub
You can learn ASP.Net dynamic data quickly. Refer http://www.asp.net/dynamicdata for more details.
Regards
Ambily
Hi Ambika,
Need the document on performance testing for result analysis.
Regards
satish
Hi Satish
Please find the part one of the result analysis at http://www.dotnetfunda.com/articles/article1563-web-performance-test-using-visual-studio-part-iii-.aspx
Regards
Ambily
Hi Ambily
my name is Altan,i live in turkey and i am junior a software tester..i am using Visual Studio Ultimate 2011 with Web Performance Testing.i have a question;How can i use with C# code Web Peformance Testing?i want write with code..
Hi
After recording the web test, please select the generate code option to generate the c# code and do the appropriate code changes.
Regards
Ambily
Hi Ambilykk.
Can you please provide the details about the web performance result analysis. How are analyze the result to check whether the give web test is pass or failed. Am unable to analyze the graphs which we get after the running the web test using vsts 2010.quick response is highly appriciate…thanks in advance…
Hi Sravan
Result analysis can not be explained in one document.
Please refer the Scalenet.pdf from Microsoft; you can download the same from microsoft site.
Regards
Ambily
Hi Ambily,
This is Mano.I am a .NET beginner.
I want to learn ASP.NET,VB.NET,silverlight,WPF,WCF and C#.
Could you tell me the best tutorial site for learning with example. Kindly send .NET material to my mail id.
Thanks & Regards
Mano
Hi Mano
.Net is a big subject; first decide what you want.
Decide the language – VB.Net or C#. Are you looking for web development, then look for asp.net.
Are you interested in connected services, then look for WCF.
For asp.net refer the http://www.asp.net/
For WPF, refer http://www.wpftutorials.com/
Regards
Ambily
Hi! ambily today i saw ur blogs & articles ur articles is very much clear and simple…
Thanks for uploading.. it is very useful for us….
HI Ambika
My name is mohammed rafi , im new to MVC 3 , can u please tell me how to pass a value from a view to controller
Refer the MVC3 articles from My article tab
Hi AmbilyKK,
Can you please tell me, how to write Entity framwork queries that can be reused.
Below is the method
public static bool GetUserDetails(string InputValue, out string EmailId, out int PwdChangeStatus,out string Password, out string onetimepassword,int mode)
{
EmailId = null; PwdChangeStatus = 0; Password = null; onetimepassword = null;
try
{
using (Entities db = new Entities())
{
if (mode == 1)
{
var query = (from Users in db.Users
where Users.UserName == InputValue
select new
{
EmlId = Users.EmailId,
PwdChngStus = Users.PasswordChangeStatus,
Pass = Users.password,
onetimepass = Users.onetimepassword
}).ToList();
foreach (var sName in query)
{
EmailId = sName.EmlId;
PwdChangeStatus = (int)sName.PwdChngStus;
Password = sName.Pass;
onetimepassword = sName.onetimepass;
}
}
else if(mode == 2) // From Change Password Screen, Here UserName input Value is EmailId
{
var query = (from Users in db.Users
where Users.EmailId == InputValue
select new
{
onetimepass = Users.onetimepassword
}).ToList();
foreach (var sName in query)
{
onetimepassword = sName.onetimepass;
}
}
}
}
catch
{
return false;
}
return true;
}
1. How can i declare and initialize var query , so that i can reuse.
2. If i reuse this method, i should get different parameters not like one mode has onetimepassword and other one all fields
Thank you so much for your article “VBA – Digital certificat issue” (http://www.dotnetfunda.com/articles/show/1984/vba-digital-certificate-issue).
I would have been definitely unable to solve this issue without your help.
Best regards.