Understand what are the requirements for the project needed and then start the development and let me know where you are stuck. After understanding the requirements start the db design and the continue the front end development. Ofcourse we are here for you to help :)
Jameel VM
Posts
-
give me lots of best Ideas -
The future of WCFWCF still have a future. If we are creating restful services ASP.NET web api is best choice. If we want to develop soap service we should use WCF
-
The request failed with HTTP status 401: UnauthorizedCan you please tell me a sample format of username and password. Most probably it will be the issue of authorization. It will be happen when the username and password is correct or the user trying to access have no permission to access that server.Also try to pass username without specify domain.
-
Asp .Net MVC ver 4 - Change standard css templateYou can follow the same steps in that video. The only changes will be the syntax. You should change aspx syntax to razor. can you provide me the youtube link you had tried? also let me where you are stuck. So i can help you one by one.
-
linq in c#try this link http://www.entityframeworktutorial.net/[^]. one of the best site give all about Entityframework.
-
@Utility.ConvertToDateTimePlease check whether model collection is empty or not
-
Comsuming RESTlet Web Service in ASP.NET 3.5 with JSON ParameterIt depends upon your requirement.What are the functionalities you try to achieve through webservices?
-
Comsuming RESTlet Web Service in ASP.NET 3.5 with JSON Parameterfrom where you want to consume the service? from the client you can send an ajax request like below
var jsonStr = JSON.stringify(reqObj);
$.ajax({
type: "POST",
dataType: "json",
url: "http://localhost/MyService/PostSomething",
contentType: "application/json; charset=utf-8",
data: jsonStr,
success: function (html) {
alert(html);
}
});From the server you need to send an HttpWebrequest
-
Renaming a solution helpManually edit sln file
-
Setting up Asp.net Mvc3, EF and StructuremapFirst You need to nuget. You can download from here http://nuget.org/[^] After install this Opentheproject >> VisualStudio >> Tools >> LibraryPackageManager>>Select Package Manager Console from the command window type the command for the package you want to install such as Structuremap,EntityFrameWork etc.The command you got from the link that i have provided earlie
-
Setting up Asp.net Mvc3, EF and StructuremapYou can install Install ASP.NET MVC3 from here http://www.asp.net/mvc/mvc3[^] Install EntityFramework via Nuget. For more go through this link http://nuget.org/packages/entityframework[^] Install StructureMap via nuget.For more go through this linkhttp://nuget.org/packages/StructureMap-MVC3/[^]