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.

 


 

 

 

 

 

 

 

Ş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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...