Yazı Font Küçült Yazı Font Büyült

Web Sayfasında Javascript İle Birlikte Session Kullanımı

 

Merhaba arkadaşlar bu makalemizde javascript ile birlikte session kullanımını göreceğiz. Script kodumuzu < head > < / head > kısmına yazalım. Username session değerini label nesnesinde göstereceğiz.

 

 

Resim1

Şekil 1

 

WebForm1.aspx.cs

 

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

 

namespace session_values_in_js

{

    public partial class WebForm1 : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            Session["userName"] = "Bahadir Sahin";

        }

    }

}

 

 

WebForm1.aspx

 

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="session_values_in_js.WebForm1" %>

 

<!DOCTYPE html>

 

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <title></title>

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>

    <script type="text/javascript" src="js/jquery-1.8.2.js"></script>

<script type="text/javascript">

$(function() {

var name = 'Welcome '+<%= Session["userName"] %>'

$('#lbl').text(name)

});

</script>

 

</head>

<body>

    <form id="form1" runat="server">

        <div>

            <label id="lbl" />

        </div>

    </form>

</body>

</html>

 

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN