Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Temp Data in MVC

Temp Data is dictionary which is used to store data into the controller to access it into the view.   It stores data for a short period of time just like the session.   It is mainly used to store one time message.   //Controlle

How to convert Javascript Arrays to Comma seperated values

The toString() method can be used to convert an array into a string. It returs a result containing string and it will seperate the different elements in the array with commas. var group = ['one','two','three','four']; var conv = group.toString();

How to use mysql join in Symfony2

Hello Friends, If your are looking to use join with query builder in Symfony2. Please review the code as below and make the changes accordingly: $qb = $this->getConn()->createQueryBuilder(); $qb->select('ts.model_id, ts.full_n

Configuring Filters in MVC

Filters in MVC needs to be configured when you need something other to be done which is not provided by its member or methods.   You can configure your own custom filter by the following three ways : (1)  Global level By registering you

Entity Framework

ADO.NET Entity Framework is based upon Object/Relational Mapping (ORM) framework that facilitate developers to work with relational database. It enable developers to deal with data as objects and properties. Using the Entity Framework, developers wri

ViewData in Asp.Net Mvc application

ViewData in Asp.Net Mvc application ViewData is one of the property of ControllerBase class. It is described as dictionary object whichis derived from ViewDataDictionary class.Thse syntax of it is as follows:- public ViewDataDictionary ViewDat

Using transaction in Entity framework 6

When we need to perform mutiple operations on an object in database or on multiple objects, then using transaction is considered a good practice as it maintains data consistency Here is the sample code of how we can use transaction in EF using (Ap

How to do AJAX cross domain calls ?

I was facing issue to post data by a form to foreign domain. I am aware of "AJAX cross-domain policy". So we just can't call "http://yahoo.com" over ajax http request and display the results on my page. So after researching I

Structured Walkthrough In The Software Testing

What Is Structured Walkthrough In The Software Testing ?   Structured Walkthrough is a kind of static testing approach which is executed in a systematic way among the group of peer to analysis and consult the professional appearances of the ap

AJAX request

To send the request on server open() and send() can be used in ajax. These are the method of XMLHttpRequest object. xhttp.open("GET", "ajax_info.txt", true); xhttp.send(); open- specifies the type of request open(method, url, async)- method- the

1 105 282
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: