www.tech-coder meant technical coder which you serve technical related information now onword.
Till date technical related information served by my blog (www.satasiyakalpesh.blogspot.com) and now it's redirect to www.tech-coder.com.
Kalpesh Satasiya
7:02 PM
Other, software developer, software development, tech-coder.com
No comments
Kalpesh Satasiya
1:53 PM
Add new table, Controller, Entity Framwork, Model, MVC, NopCommerce, software developer, software development, View
2 comments
Mapper.CreateMap<MyTest, MyTestModel>() .ForMember(dest => dest.Name, mo => mo.Ignore()) .ForMember(dest => dest.MyTestId, mo => mo.Ignore()); Mapper.CreateMap<MyTestModel, MyTest>() .ForMember(dest => dest.Name, mo => mo.Ignore()) .ForMember(dest => dest.MyTestId, mo => mo.Ignore());
6. Apply Mapping between Model and Entity on MappingExtensions.cs
Kalpesh Satasiya
2:55 PM
ahmedabad, convert currency format, Currency decimal points, software developer, software development
No comments
Kalpesh Satasiya
11:40 AM
ahmedabad, Enum, Enum to HashTable, HashTable, software developer, software development, web designing, web developer, web development
2 comments
Kalpesh Satasiya
6:58 PM
ahmedabad, asp.net, Email with Embed Image, Embed Image, india, software developer, software development
4 comments
Kalpesh Satasiya
12:55 PM
ahmedabad, asp.net, software developer, software development, XML Parse
1 comment
Kalpesh Satasiya
5:12 PM
ahmedabad, cursor in sql server, software developer, software development, sql server database suspect, suspect database, web developer, web development
3 comments
Kalpesh Satasiya
3:41 PM
ahmedabad, parent child relation ship in sql server, self relation in sql server, software developer, software development, web developer
2 comments
Kalpesh Satasiya
3:04 PM
ahmedabad, asp.net, Call server side function using Jquery, jquery, software developer, software development, web developer, web development
No comments
Kalpesh Satasiya
4:22 PM
ahmedabad, caching page, event not work, india, page load, page load event, software developer, software development, web developer, web development
No comments
Kalpesh Satasiya
5:56 PM
ahmedabad, convert excel to datatable, import excel file, india, software developer, software development, web developer, web development
No comments
Kalpesh Satasiya
5:35 PM
ahmedabad, asp.net, get physical path, india, physical path, software developer, software development, web designing
No comments
Kalpesh Satasiya
6:06 PM
.Rdcl report, ahmedabad, custom function in .rdlc report, india, India Currency format, software developer, software development
No comments
Kalpesh Satasiya
5:41 PM
ahmedabad, cursor in sql server, declare nested cursor, india, nested cursor, software developer, software development
1 comment
Kalpesh Satasiya
2:06 PM
.CS class, .VB and .CS class file use in one project, .VB class, ahmedabad, asp.net, india, software developer, software development
No comments
When I was creating my one of the site, I chose to write it in C#. I had a problem with the App_Code folder because I had some code in VB.NET code and some C# code I needed to put in there. I didn't want to rewrite my VB.NET code in the App_Code folder just so I could write the rest of the code for the site in C#.
Luckily, the ASP.NET Team had already thought about just this kind of circumstance. They implemented a way to partition the App_Code folder into sub-folders, one for each set of code files written in the same programming language. Awesome, I didn't have to spend a couple hours converting code from VB.NET to C#!
The below works with ASP.NET 2.0 and later.
Even if you don't use multiple different programming languages for your code files in the App_Code folder, you could use this feature to organize your sets of related code files into sub-folders.
Step 1: Add the following lines to the web.config
Step 2: Create a sub-folder in the App_Code folder for each language you want to support.
For Example:
/App_Code/VB_Code
/App_Code/CS_Code
Step 3: Place your VB.NET code in the VB_Code folder and place C# code in the CS_Code folder.
Kalpesh Satasiya
9:55 AM
ahmedabad, convert currency format, india, India Currency format, JavaScript, software developer, software development
No comments