Posts tagged "How To"
How To
How To
Stack Overflow is one of the popular website that includes the Q&A kind of functionality . The website is more community driven which allows the users to post questions and the community members to answer. Interesting feature of the Stack Overflow is that it allows the users to accumulate points [...]
If you are using jQuery and want to get the textbox value using jQuery , you can do it easily by just using the name/id of the textbox. How to get the textbox value using jQuery ? For example , assume that your textbox name is txtFirstName , you can [...]
When using the EditorFor in ASP.NET MVC Razor View , one may want to set the additional html properties too like the width , Readonly etc . How to set HTML Properties for EditorFor element in ASP.NET MVC Razor View ? You can set the HTML Properties for EditorFor element [...]
Categories: ASP.NET Tags: ASP.NET, ASP.NET MVC, EditorFor, How To, HTML, Razor View
If you are a ASP.NET MVC developer using the DevExpress controls and want to save and Restore layout, you can easily do it by setting couple of properties of the DevExpress GridView extension. How to Save and Restore layout of DevExpress ASP.NET MVC GridView Extension ? The DevExpress ASP.NET MVC [...]
Categories: ASP.NET Tags: ASP.NET MVC, DevExpress, GridView, How To, Restore, Save
In this blog post , we will share a trick to get a new IP address from the Wifi router that the iPhone or iPad connects to. You can get the new IP address on iPhone or iPad via Setting the Manual IP address. Renew DHCP from the wifi router [...]
Categories: Apple Tags: How To, IP Address, iPad, iPhone
Everyone of us want ourselves to be noticed specially in terms of our skills or ability at work . One may need to keep others too updated about them besides the general programming skills that they possess . How to Market oneself as a Software Developer ? Below are some [...]
Categories: Computers Tags: How To, Market, Software Engineer
The Page Break in Microsoft Word informs the Word document when exactly the text should be moved to the next page. When there is not enough lines in the page, Microsoft Word automatically inserts the page break. There are sometimes when you want to insert the page break because of [...]
Categories: Microsoft, Microsoft Office Tags: How To, Microsoft, Page Break, tips, tricks, Word
How to get QueryString values in ASP.NET MVC? In ASP.NET MVC, if you want to pick the QueryString values, you can it easily by accepting the parameter argument in the action method of a controller. For example, public ActionResult Index(string MovieName) { Return View(); } With the above action method, [...]
Categories: ASP.NET Tags: ASP.NET MVC, How To, QueryString
In my previous article, I demonstrated how to Set Primary key for a table in SQL Server Management Studio (Designer). In this article, I will demonstrate how to remove the Primary Key for a table in the SQL Server Management Studio Designer How to Remove the Primary key of a [...]
Categories: SQL Server Tags: How To, Primary key, remove, SQL Server Management Studio, Table
In my previous article, I explained the difference between the Primary Key and Foreign Key with an example. In this blog post, I will demonstrate how to set Primary key for a table in SQL Server Management Studio in the designer. How to Set Primary key for a table in [...]
Categories: SQL Server Tags: How To, Primary key, SQL, SQL Server Management Studio