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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
S

Suave_Shiva

@Suave_Shiva
About
Posts
17
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Runtime & Compile time Execution means in .NET?
    S Suave_Shiva

    Thanks a lot...... :-D :) .....

    C# csharp help question

  • Runtime & Compile time Execution means in .NET?
    S Suave_Shiva

    Thanks a lot...... :-D :) .....

    C# csharp help question

  • Runtime & Compile time Execution means in .NET?
    S Suave_Shiva

    I googled a lot, but still didn't get exact answer.... In.NET, When v execute an application, Wat is compile time error and Wat is runtime error... Thanks... :rolleyes:

    C# csharp help question

  • Doubt on Textbox Control !!!!!
    S Suave_Shiva

    Am Developing an windows application in .NET 2.0 Framework. The scenario is like, In User interface, We have textbox's for username & another for password. The user will enter username & then he press enter key, after pressing enter key the cursor must come to password textbox, can any please solve the problem. Am unable 2 study abt the ENTER key, generally V can have through by pressing tab key, but client request is only throught enter key...... Thank you in advance... Hope u people will b solving it... :rolleyes:

    .NET (Core and Framework) csharp design help

  • To integrate touch screen in web application, in .net framework.
    S Suave_Shiva

    I have an web application ,i want to introduce touch screen in the application which is in .net framework. I have no idea about how to integrate touch screen concept in the web application... can any one help me please. Hope you may help with logic to integrate. Atleast give me the links where i can get information. i think ,it's embedded related, i need some external hardware is what i think!!! Anyway please help me out... Thank you in advance... :)

    .NET (Core and Framework) hardware csharp dotnet help tutorial

  • In sql server, Indexing is faster in which datatype comparatively?
    S Suave_Shiva

    :) Hi Frds, If we are using Indexing concept for searching criteria, which datatype will b faster, can you please tell me the order(Int,Date & String)??? Thank U............. Urs Suave Shiva :laugh:

    Database database sql-server sysadmin algorithms question

  • I want to run live videos(cricket match) in my own website
    S Suave_Shiva

    using DotNET Framework i.e asp.net , iwant to built application such a way that it must be able to run live video in my website(like cricket or CNN news channel,but it is live telecast). Can any one suggest me,how to implement this project........... what are the technologies & tools required, please help me.;) Suave shiva

    Visual Studio csharp asp-net tools regex help

  • I want to run live videos(cricket match) in my own website
    S Suave_Shiva

    using DotNET Framework i.e asp.net , iwant to built application such a way that it must be able to run live video in my website(like cricket or CNN news channel,but it is live telecast). Can any one suggest me,how to implement this project........... what are the technologies & tools required, please help me.;) Suave shiva

    .NET (Core and Framework) csharp asp-net tools regex help

  • I want to run live videos(cricket match) in my own website
    S Suave_Shiva

    using DotNET Framework i.e asp.net , iwant to built application such a way that it must be able to run live video in my website(like cricket or CNN news channel,but it is live telecast). Can any one suggest me,how to implement this project........... what are the technologies & tools required, please help me.;) Suave shiva

    ASP.NET csharp asp-net tools regex help

  • From where 2 start a Website?
    S Suave_Shiva

    Hi frd's!, I want 2 start a "FORUM WEBSITE", From where to start the project & also advise with it contents(i had default requirements,hope you give some new topics). Firstly, from where i hav to start the project. This is my first project. Am started with documentation(Like the website introduction,its advantage's- wht are topics required & its benefits,then after wht i have 2?) So, Wht U people suggest ME? Waiting in anticipation 4 ur invaluable Suggestions................ Thank U:) Urs Suave_Shiva

    ASP.NET business question

  • using sessions in asp.net
    S Suave_Shiva

    Still i didn't completed that task,its in ending...........am able 2 end the session using timeout,ok.But.......... I tried to kill the session when i click back button(by writing the code in load event),so that i had to login again when i click forward button.But the code is not working..............plzz check the code code: ----------------- In Login Page: in the load event if(session["Login"]==null) session.abondon(); (tried also Session["Login"]=null;) & Coming 2 code in the homepage,in the load event if(session["Login"]==null) Response.redirect("Loginpage.aspx"); ----------------------- Hope U can solve my problem.......plzzzzzzzzzzzzzzzzzzzzzzz Thank U 4 everything.till now........ Urs Shiva

    ASP.NET csharp asp-net

  • regarding authentication in ASP 2.0
    S Suave_Shiva

    HI!:laugh: C if u hav limited number of users then v can configure thru Authentication like code: so,only 2 users r allowed i.e shiva & imthiyas . no more users are allowed :) Urs Shiva

    ASP.NET security help

  • session VS query string
    S Suave_Shiva

    Commonly, both are used for data interchange between webpages. From my point Query string is best,for small data interchange. But using sessions U can interchange even datagrid.So ,based on our requirements we can choose any one of them. Urs Shiva

    ASP.NET html database visual-studio question

  • using sessions in asp.net
    S Suave_Shiva

    Thank U 4 ur cooperation & concept,but am unable 2 get wht i want the ouput,its not been logging out(session is not been ending,even if i unload). here's my code(without session declarations),can u create sessions & send me the code,take ur own time............but plzz send the code.......... => code of login page --------------------------------------------------------- protected void Button1_Click(object sender, EventArgs e) { try { OleDbConnection MsAccessCON = new OleDbConnection(ConfigurationManager.AppSettings["Con"]); OleDbCommand CMD = new OleDbCommand(); OleDbDataAdapter Adap = new OleDbDataAdapter("select * from Login",MsAccessCON); int i; int j; string ForUserName; string ForPassword; DataSet DS = new DataSet(); i = Adap.Fill(DS); DataTable DT = DS.Tables[0]; for (j = 0; j < i; j++) { ForUserName = Convert.ToString(DT.Rows[j][0]); ForPassword = Convert.ToString(DT.Rows[j][1]); ForUserName = ForUserName.Trim(); ForPassword = ForPassword.Trim(); if (ForUserName == UserNameTxtBx.Text && ForPassword == PwdTxtBx.Text) { Response.Redirect("HomePage.aspx?hi" + HttpUtility.UrlEncode(UserNameTxtBx.Text)); break; } if (ForUserName == UserNameTxtBx.Text && ForPassword != PwdTxtBx.Text) { ErrorLbl.Text = "Invalid Password"; break; } } if (j == i) { ErrorLbl.Text = "Invalid Username & Password"; UserNameTxtBx.Focus(); } // MsAccessCON.Close(); } catch (SystemException Ex) { Console.WriteLine(Ex.ToString()); } --------------------------------------------------------- homepage code: --------------------------------------------------------- logout as taken as link (when i click logout,i declared url to redirect to the login page) --------------------------------------------------------- In "web.config: I declared time=1", 2 expire session time. can u create session object & unload event for this code..........plzzzzzzzz From Shiva to 8x Solutions Ltd

    ASP.NET csharp asp-net

  • using sessions in asp.net
    S Suave_Shiva

    Hi Mr.8X Thank U for telling me in concept wise(internally) . I tried thru ur concept wise,but am not getting ,can u please send code or give me links, plzzzzzzzzzzzz. Hope u send me the solution............Thank U Shiva

    ASP.NET csharp asp-net

  • using sessions in asp.net
    S Suave_Shiva

    , this means session will expire after 10mins,ok.after 10mins,which page it should redirect?, where we hav 2 mention to redirect our login page(default page)?(was my question). Also the second Qtn was, when you sign in to a page, then if click 'back' button in the browser,it will directs to login page & if click 'forward' button ,it should not direct to the homepage,it should direct to login page,How is this possible?PLzzzzzzzzz send the code. Shiva

    ASP.NET csharp asp-net

  • using sessions in asp.net
    S Suave_Shiva

    The session should expire after 10mins & should redirect to login page. Also when user logged, click back button from browser & then clicking forward button,the session should expire & made him to Relogin again,please send code to me as soon as possible.Thanks in advance to whom so ever sending me the code...................... Shiva

    ASP.NET csharp asp-net
  • Login

  • Don't have an account? Register

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