Link to home
Start Free TrialLog in
Avatar of GlobaLevel
GlobaLevelFlag for United States of America

asked on

asp.net - issue with page_load with inline code...

I dont think I have the page_load syntax correct on this..please help..

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Qualify_client.aspx.vb" Inherits="MASER_BUILD.Qualify_client" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



   
<%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.HttpStyleUriParser"%>
<%@ Import Namespace="System"%>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Data.SqlClient"%>
<%@ Import Namespace="System.Data.DataSet"%>
<%@ Import Namespace="System.Data.SqlClient.SqlDataAdapter"%>
<%@ Import Namespace="System.CodeDom.Compiler"%>  
<%@ Import Namespace="System.Net"%>
<%@ Import Namespace="System.Diagnostics"%>
<%@ Import Namespace="System.Security.Cryptography" %>

   

<script runat="server">
    Public Sub Page_Init(ByVal object sender, ByVal EventArgs e)
       
    End Sub
    Sub Button1_Click(ByVal sender As Object, ByVal e As ImageClickEventArgs) 'Handles Submit.Click
        ' LETS SEE
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Do you mean the page load or page init?
I will provide the proper syntax for both.

Hope this helps,
Dustin
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        'Do Stuff
    End Sub
    Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
        'Do Stuff
    End Sub

Open in new window

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GlobaLevel

ASKER

whats the diff between LOAD and INIT?


can I ask one more question...

how do I take data stored into a variable and paste it into a txt file posted in my projected....
dim strData as string
strdata = "test"

my.computer.filesystem.saveAllText("C:/folder/file.txt") = strdata


Yes Page_Init is pretty much similar to Page_Load. You can do all the things

which You did in Page_Load. But the major difference is Page_Load will be

fired each time when the page submits. Page_Init will be fired only once when

the page loads for the first time.
>>  But the major difference is Page_Load will be
>>  fired each time when the page submits. Page_Init will be fired only once when
>>  the page loads for the first time.

That is not true. Page_Init fires before Page_Load, every time the page is requested. See http://msdn.microsoft.com/en-us/library/ms178472.aspx for more information.
perfect!
okay...this is a great link...I just need to load it once when the user first intializes the web site....doesnt have to wash and repeat during the session...
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thnks