Snake,
Unless the mail server is setup to receive or route mail from an smtp server then most likley it will never work. Your local computer (smtp) is not set up to to communicate with hotmail's server.
This is done to to stop spam.............
Programming today is a race between software...
Check the version of the framework on both servers. You may need to change the IIS server on the 2003 server to run in IIS 5 isolation mode.
Look under website properties then Services
I had this problem also and had to Run the WWW service in IIS 5.0 Isolation mode for older asp.net...
Once you have your included references just add this code
Dim DiskOpts As CrystalDecisions.Shared.DiskFileDestinationOptions = New CrystalDecisions.Shared.DiskFileDestinationOptions()
("Report").ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile...
Pop,
You do not use e property you use the datagrid's selected Item property ie: dgIssues.selecteditem.cell(n).text
where n is the number of the cell.
CtDapper
D
I'm such an IDIOT.
Code line 2,562 I have an if statement. That if my data table is not created for the application to create it and to set a couple of session variables. for the first time.
However my bag I did not give an else statement to set those two very important session variables...
D
I can check the sql table an it does make an entry into the table for each session. as far as I can tell.
mode = "SQLServer"
cookieless = "false"
timeout="20"
Dan.
D,
Yes I say that.
I went through and deleted all session variables. and gave them a application variable(I don't want to do this but I only want to check to ensure that everything worked.) It work just like the origanal problem. After deleting all session variables. Then I retried the...
D
The application allows users to track different phases of a project(a building project). The contractor can look a different areas of the project for the status of the job and the of funds aviable/committed to that phase. I am tring to use session variables to keep tract of the project and...
Mark,
Thanks for all the time.
I have searched the microsoft site all day yesterday and today trying to get this to work.
Yes in the config.
I have tried both the inproc and the SQL neither will work.
This works the first time thriugh called when a page loads
Public Sub fill_data()...
Mark,
I am new to this web based stuff with dotnet so I will be happy with any help.
The Session ID will not print out. I have now lost the use of all session Veriables. However The sqlserver database is keeping track of each session.
Platform 2000 server IIS5.0 SQL 2000
development...
Mark,
We are on the same page.
My session variables are acting as if they are application variables.
When a person enters the site thier session("project") is set to session("project")=1
session("user") = tbuser.text
the next person who logs in resets all the...
Mark,
Maybe I did not explain myself correctly. When user two starts a session then changes to a different project number the project number changes for all browsers that are connected to the site.
I have a search that button that the user can enter in the project number then on the click...
I have written a local intranet program so that users can chech the status of different projects.
I use session variables to keep tract of the project number and the phasecode of the project they are viewing. How ever if there are more then two users then the one that changes the project number...
bOEmAN,
After you have made your form and named it let's say that it is call form2.
in the program you must decliar a form(what everyou want to call it) let's say frmtest as system.windows.forms.form
then when you are ready to open up your form
dim frmtest as new form2(the form you created)...
I am able to add a new record to the dataset with the following code.
Dim i As Integer
Dim anyRow As DataRow = Me.objpagers.COMM.NewRow
Me.objpagers.COMM.Rows.Add(anyRow)
i = Me.objpagers.COMM.Count
Me.grdCOMM.CurrentRowIndex = i
grboxadd.Visible =...
Using a stored procedure in an SQL Database with VB calling it:
CREATE procedure dbo.up_select_company
@code_id varchar(4)
as
select *
from company
where code = @code_id
VB part:
cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...
Using a stored procedure in an SQL Database with VB calling it:
CREATE procedure dbo.up_select_company
@code_id varchar(4)
as
select *
from company
where code = @code_id
VB part:
cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.