Thứ Tư, 27 tháng 8, 2014

MVC4 Different Redirection Techniques (Razor)

Introduction

This tip lists different redirection techniques for MVC4.
  1. HTML Tag
    <input type="button" value="Forgot Password" 
    onclick="window.location.href('@Url.Action("ForgotPassword","Account")')" />
       
  2. For posting, you could use a form:
    <form method="post" id="signin" action="@Url.Action("ForgotPassword", "Account")">
    <input type="button" value="Forgot Password" />
    </form>
       
  3. Using script:
    <script type="text/javascript">
        $(document).ready(function () {     
          $('#btnForgotPassword').click(function (e)      {
              location.href = '@Url.Content("~/Account/ForgotPassword/")';
          });
        });
    </script>
    //change below input tag
    <input id='btnForgotPassword' type="button" value="Forgot Password" />
       
  4. If it is a link:
    @Html.ActionLink("some text", "actionName", "controllerName")
       
  5. For posting, use a form:
    @ using(Html.BeginForm("actionName", "controllerName")) { 
        <input type="submit" value="Some text" />
    }
       
  6. For Anchor Tag:
    <a href="http://www.codeproject.com/Controller/View" class="Button">Text</a>
       
  7. Using RenderAction:
    @{ Html.RenderAction("ActionName", "ControllerName", 
    new { FranchiseSetId = Model.FranchiseSetID }); }
       

Controller.RedirectToAction Method


Returns an HTTP 302 response to the browser, which causes the browser to make a GET request to the specified action.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

 NameDescription
Protected methodRedirectToAction(String)Redirects to the specified action using the action name.
Protected methodRedirectToAction(String, Object)Redirects to the specified action using the action name and route values.
Protected methodRedirectToAction(String, String)Redirects to the specified action using the action name and controller name.
Protected methodRedirectToAction(String, RouteValueDictionary)Redirects to the specified action using the action name and route dictionary.
Protected methodRedirectToAction(String, String, Object)Redirects to the specified action using the action name, controller name, and route dictionary.
Protected methodRedirectToAction(String, String, RouteValueDictionary)Redirects to the specified action using the action name, controller 

Confirmation message after clicking the ActionLink in MVC

Confirmation message after clicking the ActionLink in MVC using Razor
Controller
Create view for the ConfirmationDialog to show the confirmation message.Ifclick ok it will redirect ConfirmationDialog
view else it stay in index view
public ActionResult ConfirmationDialog()
{
return View();
}
From action create view as like below
ConfirmationMessage
ConfirmationMessage1
View (index)
@{
ViewBag.Title = “Home Page”;
}
@Html.ActionLink(“Click to Confirm”, “Confirmation”, null, new { onclick = “return ConfirmationDialog()” })
<script type=”text/javascript”>
function ConfirmationDialog() {
if(confirm(“Are you sure to continue?”))
return true;
else
return false;
}
</script>
OUTPUT:
ConfirmationMessage2
If you click ok, it will redirect to the Confirmation.cshtml view

Thứ Ba, 26 tháng 8, 2014

SqlCommand.ExecuteNonQuery Method

Executes a Transact-SQL statement against the connection and returns the number of rows affec

JavaScript: Window Location

The window.location object can be written without the window prefix.

Some examples:
  • location.href returns the href (URL) of the current page
  • location.hostname returns the domain name of the web host
  • location.pathname returns the path and filename of the current page
  • location.protocol returns the web protocol used (http:// or https://)
  • location.assign loads a new document

Do Not Declare String, Number, and Boolean as Objects!


When a JavaScript variable is declared with the keyword "new", the variable is created as an object:
var x = new String();          // Declares x as a String object
var y = new Number();          // Declares y as a Number object
var z = new Boolean();         // Declares z as a Boolean object

JavaScript: Window Screen

The window.screen object contains information about the user's screen.


Window Screen

The window.screen object can be written without the window prefix.
Properties:
  • screen.width
  • screen.height
  • screen.availWidth
  • screen.availHeight
  • screen.colorDepth
  • screen.pixelDepth

Window Screen Width

The screen.width property returns the width of the visitor's screen in pixels.

Example

Display the width of the screen in pixels:
"ScreenWidth: " + screen.width
Result will be:
Screen Width: 1024

Try it Yourself »


Window Screen Height

The screen.height property returns the height of the visitor's screen in pixels.

Example

Display the height of the screen in pixels:
"Screen Height: " + screen.height
Result will be:
Screen Height: 768

Try it Yourself »


Window Screen Available Width

The screen.availWidth property returns the width of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.

Example

Display the available width of the screen in pixels:
"Available Screen Width: " + screen.availWidth
Result will be:
Available Screen Width: 1024

Try it Yourself »


Window Screen Available Height

The screen.availHeight property returns the height of the visitor's screen, in pixels, minus interface features like the Windows Taskbar.

Example

Display the available height of the screen in pixels:
"Available Screen Height: " + screen.availHeight
Result will be:
Available Screen Height: 728

Try it Yourself »


Window Screen Color Depth

The screen.colorDepth property returns the number of bits used to display one color.
All modern computers use 24 or 32 bits hardware to display 16,777,216 different colors ("True Colors").
Older computers used 16 bits, which gives a maximum of 65,536 different colors ("High Colors")
Very old computers, and old cell phones used 8 bits ("VGA colors").

Example

Display the color depth of the screen in bits:
"Screen Color Depth: " + screen.colorDepth
Result will be:
Screen Color Depth: 24

Try it Yourself »

NoteSome computers report 32. Most computers report 24. Both display "True Colors" (16,777,216 different colors).


Window Screen Pixel Depth

The screen.pixelDepth property returns the pixel depth of the screen.

Example

Display the pixel depth of the screen in bits:
"Screen Pixel Depth: " + screen.pixelDepth
Result will be:
Screen Pixel Depth: 24

Try it Yourself »