Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kumarjammula

@kumarjammula
About
Posts
24
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • M.Tech Project
    K kumarjammula

    I am just asking suggest an topic to proceed with...

    came out of hardwork

    C# csharp tutorial

  • M.Tech Project
    K kumarjammula

    hello Can any one suggest me an IEEE project in .net and C# for my graduation or else guide me

    came out of hardwork

    C# csharp tutorial

  • Regarding deployment
    K kumarjammula

    Friends I had developed an small website in visualstudio 2008 and I had problem in Deployment of that site.. steps: 1.I installed IIS server 2.registered asp.net 3.Created virtual directary and placed in that folder It is working in One System with URL:http://localhost/home.aspx I want that site to be run in the LAN systems I am using XPsp2

    came out of hardwork

    ASP.NET sysadmin csharp asp-net windows-admin help

  • image upload/retrive from sqlserver 2000
    K kumarjammula

    Hello, I want to save image/picture in my Database and retrive it and how to display it in Datagrid plse help me

    came out of hardwork

    C# database help tutorial

  • Reading inputs from Device
    K kumarjammula

    Hi Plse suggest or with an exmaple How can I read inputs from the hardware device Example: In Milk collection stations if there is device by which we can measure the fat content of milk if it measures the Fat content and given reading as 8.0 how can i get it in to my Application and use them where I have To connect to my System (SERIAL PORT)... And I my Application what namespace I have add. plse help me

    came out of hardwork

    ASP.NET hardware help tutorial question

  • Selecting a particular element
    K kumarjammula

    Thak u for ur suggestion

    came out of hardwork

    XML / XSL xml help tutorial question

  • Selecting a particular element
    K kumarjammula

    <USA> <State> <Name>Alabama</Name> <Counties> <1>Autauga <2>Baldwin <3>Barbour </Counties> </State> <State> <Name>Alaska</Name> <1>Aleutians East <2>Aleutians West <3>Anchorage Friends this my Xml file I had attached all States names to DropdownList And My problem is when particular state is selected in Dropdown list how can I retrive Counties to a particular state plse suggest me an example

    came out of hardwork

    XML / XSL xml help tutorial question

  • Ajax controls adding to project
    K kumarjammula

    Thanq for suggesting me...

    came out of hardwork

    ASP.NET help tutorial

  • Ajax controls adding to project
    K kumarjammula

    Hi Friends I had downloaded the control toolkit from Microsoft site how to use it in my AjaxEnabledwebsite help me

    came out of hardwork

    ASP.NET help tutorial

  • remember me feature in asp.net 1.1
    K kumarjammula

    Hi, this code can help. This is code for 2.0 login control u replace login1.username by ur textboxcontrol.text and by this code it will create cookie in ur local system and below code u place in ur pageload This will work fine.... CheckBox chkBox = (CheckBox)Login1.FindControl("RememberMe"); if (chkBox.Checked==true) { HttpCookie myCookie = new HttpCookie("myCookie"); //Instance the new cookie Response.Cookies.Remove("myCookie"); //Remove previous cookie Response.Cookies.Add(myCookie); //Create the new cookie myCookie.Values.Add("user", this.Login1.UserName); //Add the username field to the cookie DateTime deathDate = DateTime.Now.AddDays(1); //Days of life Response.Cookies["myCookie"].Expires = deathDate; //Assign the life period myCookie.Values.Add("pass", this.Login1.Password); } Getting after Cookie created if (Request.Cookies["myCookie"] != null) //Cookie Exists?? { HttpCookie cookie = Request.Cookies.Get("myCookie"); string user = cookie.Values["user"].ToString(); if (user != "") { Login1.UserName = user; //Write the username onto login username textbox } }

    came out of hardwork

    ASP.NET csharp asp-net tutorial

  • what happennig.......
    K kumarjammula

    Thnaks for ur reply

    came out of hardwork

    ASP.NET sysadmin windows-admin

  • what happennig.......
    K kumarjammula

    Hi Friends, This is regarding what happening between IIS server and Localbrowser.. We all familiar that IIS server in our System process our application or our page.. I will Give an Ex: Lets consider I am having an login page if I entered the loginname and password and click enter what happens & how request will reach IIS. I know that the url is the only bridge between IIS and Explorer plse explain me what happening beneath..............

    came out of hardwork

    ASP.NET sysadmin windows-admin

  • AJAX Helpme out
    K kumarjammula

    Its question u think give me answer or its doubt help me out

    came out of hardwork

    ASP.NET javascript help

  • AJAX Helpme out
    K kumarjammula

    Hello Friends.. I had small doubt regarding.. I Had taken a default page .js file and in Default.aspx i had taken a button on button click i want to a javascript function.. In that function i had created http Object and secondly my aim is to return back to Default page and execute some code plse help me...

    came out of hardwork

    ASP.NET javascript help

  • How to make row clickable DataGrid?
    K kumarjammula

    if (dgvEmployee.CurrentRow.Index == -1) // Is there any row selected now? return; // Retrieve the first column from the selected row. int Id = Convert.ToInt32(dgvEmployee.CurrentRow.Cells[0].Value.ToString()); This gives the particular value in the row of cell 0 ...If it help carry on

    came out of hardwork

    ASP.NET help tutorial question

  • remember me
    K kumarjammula

    Take a checkbox in the login page i had used Logincontrol of asp.net2.0 CheckBox chkBox = (CheckBox)Login1.FindControl("RememberMe"); if (chkBox.Checked==true) { HttpCookie myCookie = new HttpCookie("myCookie"); //Instance the new cookie Response.Cookies.Remove("myCookie"); //Remove previous cookie Response.Cookies.Add(myCookie); //Create the new cookie myCookie.Values.Add("user", this.Login1.UserName); //Add the username field to the cookie DateTime deathDate = DateTime.Now.AddDays(1); //Days of life Response.Cookies["myCookie"].Expires = deathDate; //Assign the life period myCookie.Values.Add("pass", this.Login1.Password); } Getting after Cookie created u write the code in page load event.... if (Request.Cookies["myCookie"] != null) //Cookie Exists?? { HttpCookie cookie = Request.Cookies.Get("myCookie"); string user = cookie.Values["user"].ToString(); if (user != "") { Login1.UserName = user; //Write the username onto login username textbox } }

    came out of hardwork

    ASP.NET csharp asp-net help

  • How to populate dataset using VIews
    K kumarjammula

    HI plse help me How to bind data to dataset using Views in sqlserver2005... I encountered this problem in crystal reports I want to bind to tables and create a report for that two tables or is there any another way help me...

    came out of hardwork

    Database help tutorial

  • Crystal report
    K kumarjammula

    HI Thanku I created a view how to use it form userside or the query which is generated is to be used

    came out of hardwork

    ASP.NET csharp help tutorial

  • Crystal report
    K kumarjammula

    I am new to .net could plse suggest me any example so that ia can manage my self

    came out of hardwork

    ASP.NET csharp help tutorial

  • Crystal report
    K kumarjammula

    Hi I hava problem regarding crystalreports My problem is how to genarate crystal report form two tables which has regid as comman coloums I am using .net2.0 ,sqlsever2005

    came out of hardwork

    ASP.NET csharp help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups