Web Forms :: Writing To A Text File Upon Application Login

Aug 24, 2010

I have the following subroutine in an asp.net application class. The subroutine writes data to a text file upon application login. My question is that if this function was called at the same time by two different users would it cause any kind of error. Is there a need for a try catch?

Public Shared Sub writeToLogFile(ByVal UserName As String)
Dim strLogMessage As String = String.Empty
Dim strLogFile As String = System.Web.HttpContext.Current.Server.MapPath("~/Log.txt") Dim swLog As StreamWriter
strLogMessage = DateTime.Now.ToShortDateString().ToString() " ==> " & UserName
If Not File.Exists(strLogFile) Then
swLog = New StreamWriter(strLogFile)
Else
swLog = File.AppendText(strLogFile)
End If
swLog.WriteLine(strLogMessage)
swLog.WriteLine()
swLog.Close()
End Sub

View 5 Replies


Similar Messages:

Web Forms :: Writing Text To File With Open Or Save Dialog Box?

Mar 29, 2010

i trying to write some text to a file in browser system......for this i'm using stream writer as like this

StreamWriter sw = new StreamWriter("c:/Billing report.doc");

but wat i need is browser should open a dialog box and ask open or save.

View 7 Replies

Web Forms :: Deleting List Item / File - Writing New File With Remaining Items

Dec 23, 2010

Spent ages trying to get this right but am struggling now. I have a list box and textbox, I can happily enter Email addresses into the textbox which are saved into a text file and populated in a list box. I want to be able to select a list item and delete it, along with it's record in my text file. I was going to do it by on the delete list item / button click, it delete's the text file and then writes and a new one with the remaining list items in the list box. Unfortunately it's re-writing the file but either not including the remaining list items. Here's some examples of what I've changed and what populates the text file:

StreamWriter1.WriteLine(Addresses.Items); - System.Web.UI.WebControls.ListItemCollection
StreamWriter1.WriteLine(Addresses.Text); - A blank line?!?

The code is below. The reason I wouldn't allow the user to delete the first list item is because I thought the code was working ok but for some reason putting in a blank line to start with, and if I deleted the line it'd delete all file content. No, I don't know why I thought that either.

[Code]....

where I've gone wrong? I've not actually slept since I woke up at 8am yesterday. It's now 11am... today.

View 5 Replies

Web Forms :: Writing Text Files Using Streamwriter

Jun 16, 2010

i'm using stream writer to write a text file on client machine, but everytime while i'm writing a new file it over writes the existing one..so now i need to write seperate file each time ...and also i need to create a folder dynamically for first time and save text files in that folder when everytime i use my application....

View 3 Replies

Web Forms :: Writing An Accounting Web Application?

Mar 10, 2010

i plan to begin develop and accounting web application , before to start

like which framework to use 2, 3.5, or 4

use the object oriented approach or the normal webforms

security issues

performance issues

View 1 Replies

Security :: Writing A Login Page That Checks Against AD Credentials?

Sep 8, 2010

I'm trying to write a simple login page, that will allow my users to login to my site using their Active Directory credentials (using their username / password we give them through AD).

I want to do 2 things with the login:

1. I want to check the username / password against our AD and verify the person is a valid user within the directory.

2. I also want to store the entry within a global variable so when the user fills out one of the forms within the site it can Insert the data into a SQL table i have running.

** we are using this site to do Setup Change Request Forms / Termination forms etc. and I just want to verify the person signing off on the form is the person logged into the machine -- use it as an "electronic signature per say".

I'm using a vb.net 2.0 approach - as i only have access to visual studio 2005 and i'm more of a vb programmer then a c#.

If anyone has any examples or can walk me through how to go about writing out this page that would be great.

View 1 Replies

Security :: Test The Login Control Without Writing Any Code?

Aug 9, 2010

I'm trying to test the login control without writing any code. According to Murachs book, you can drag and drop the login control onto a Login.aspx form. Use the ASP Configuration Security tool to create user, roles, and access rules for the website. And you should then be prompted for authentication. I created two folders in my website, admin and users. The admin folder has a admin.aspx form and the users folder has a users.aspx form. I also edited the access rules to only allow admin to access the admin.aspx and only allow user to access the users.aspx form.

View 4 Replies

Web Forms :: Writing To Log File On First Pageload?

Oct 27, 2010

Based on this piece of code, I want to do exactly like this demonstration. However, correct me if I'm wrong but if two or more users somehow simultaneously access the web page at the same precise nanosecond in time, then wouldn't we have a race condition? So is this piece of code valid? How would I correct this to make it thread safe?

[Code]....

View 3 Replies

Writing Text On An Image?

Nov 22, 2010

I want to write a discount amount which is coming from a Database onto an image. I have taken an image like:

<div style="height: 158px; width: 210px; float: left; position: relative;">
<a id="aproduct" runat="server">
<asp:image id="pimage" runat="server" width="210" height="158" border="0" />
</a>

[Code]....

I want to show discountTag image as background to <td> and show discount amount in a label.

I try for this, but when I do this the big image on which I am showing my discountTag label are not getting aligned properly. I want the o/p like Big image on which discountTag image on which discount amount.

View 2 Replies

Web Forms :: Rollback From File Reading / Writing

Mar 9, 2011

I am using more than one files to read and write to the server. Suppose during writing or reading any of files gets error the already stored files need to be rollback or removed from storing.So that the user agin try to write without error. Simply the all of the files need to be stored into the server without error, of error occurs to any of file none of files need to be read/write

View 2 Replies

Web Forms :: Writing A File (doc) To Different Server On The Network?

May 18, 2010

I am trying to create and write a file on a remote server using the below code:

[Code]....

but i am running into issues and getting errors. Below are some tries i have given. My IIS settings are 'Anonymous Access' checked and also 'Integrated windows authentication' checked.

a. As i understand asp.net site would run using ASPNET account, i tried giving full permission to ASPNET account to the folder on the remote server (where i want to drop the file). But i am getting this error - "Logon failure: unknown user name or bad password"

b. The other thing i tried is giving full permissions to 'Everyone' to the remote server folder. But i get the same error as above. But when in my web.config i enable impersonation by using:
[Code]....

then the error goes away and everything works fine as expected. The file gets dropped to the network share.

why the scenario (a) doesn't work because that should work as if i give ASPNET account full access to the folder, and my website is running under the same account, then it should work.

Also, in the scenario (b), i believe it is using my domain account, as the impersonation is true without specifying any username and password and also the remote server folder has Everyone access to full control.
BUT, as a security breach, i cannot use Everyone account to the remote folder. In that case, how can i make this working.

I was also thinking if i can use the virtual directory as the path to the remote folder, something like
http://domain.com/remotefolder but dont know how can i use this approach. Can someone pls share some sample code and the configuration.

View 1 Replies

Web Forms :: Writing Bitmap File On Server?

Oct 19, 2010

I'm making an application which takes image from user upload it to server and then perform any image processing like to convert to gray or invert etc.

My problem is this when i did the process on image to gray it or invert then how to write this new file on server or is there any other way so that i would be able to show this (new) image to user and make it downloadable?

View 2 Replies

Can Login With Forms Authentication And Then Transfer That 'login' To A PHP Application

Mar 7, 2011

Our website runs on ASP.NET v4 and users log in user Forms authentication.

We are considering purchasing a web application that will add to our services. The only problem is that this new website is written in PHP.

We would like users to login to our ASP.NET site and then navigate to the PHP site. The PHP site should notice that users are logged-in though. So we probably need to transfer the ASP.NET SessionID cookie and somehow use that to verify whether or not the user has been authorized.

View 4 Replies

How To Write Text File Under Application Path

Jan 28, 2011

I would like to write text file under my applicaiton folder like below;

../myapp/Data/mytextfile

View 3 Replies

Saving A Text File To The Application Folder?

Jun 22, 2010

i have build an MSI file for my project. Now what i need i am having some text boxes on my form. If i click on save i would like to save it as text file to the application installed folder.

View 3 Replies

Security :: Writing Code - Behind For Completing User Registration That Resides In Login View

Jul 17, 2010

i got this message when writing code-behind page: Compiler Error Message: BC30506: Handles clause requires a WithEvents variable defined in the containing type or one of its base types. Source Error:

[Code]....

Line 2: Partial Class _DefaultLine 3: Inherits System.Web.UI.PageLine 4: Protected Sub NewUserWizard_CreatedUser(ByVal sender As Object, ByVal e As System.EventArgs) Handles NewUserWizard.CreatedUserLine 5: ' Get the UserId of the just-added userLine 6: Dim newUser As MembershipUser = Membership.GetUser(NewUserWizard.UserName) also this from the error list: Error 2 'NewUserWizard' is not declared. It may be inaccessible due to its protection level. C:inetpubwwwrootWebSiteDefault.aspx.vb 6 60 [URL] the create wizard resides in the loginview

View 6 Replies

Web Forms :: File Reading And Writing For Number Of User

Mar 16, 2011

In my application i want to share one .txt for read and write among no. of users. in Button click i m writing data in that file and in tick event of Timer i m reading that file, In tick event i m reading that file based on file based cachin means if file have been changed then only i m reading that file but when i have put m application i IIS then i m not able to get updated file.

View 2 Replies

Web Forms :: Writing A Log In Xml File Or Insert Query In Database?

Feb 20, 2010

i want to maintain a log of the visitors for a website.. the number of visitors is fix approximate (800), but i have to maintain the record of each visit page wise like page Id, time visited, user id. i am doing it using a database as it was .

i was asked to use a insert query on every page ,(ie each time user visits a page write the log to database), but i dint like the idea.. of making server trips every time the user visits a page and also we have a seperate database server. I had a idea of using XML.. but which is the best way performance wise writing a log in Xml file or insert query in database?

View 4 Replies

Web Forms :: Writing Metadata To File Error On Build?

Jun 29, 2010

I keep getting this error when trying to Run or Build my ASP Project. A few details:

I migrated this project from VS 2003 to VS 2008 (C#) It works fine when I successfully compiled it and deployed onto server.I have Plenty of free diskspace available.I have 4 GB Ram and Windows XP So each time I try to build this project, I get the following error.

Error 57
Unexpected error writing metadata to file 'C:InetpubwwwrootProject.IntranetobjTestProject.Intranet.dll' -- 'Not enough storage is available to complete this operation. 'Project.Intranet

View 1 Replies

Web Forms :: Writing A Custom Class For A Single File Uploader?

Oct 21, 2010

I'm fairly new at writing c# with asp.net and thought I'd give writing a custom class for a single file uploader, but Im a bit stuck with it. I get build errors with a few of the items, here's my code:

[Code]....

View 1 Replies

Reading / Writing Text Files On Server?

Mar 4, 2011

I have write small web-service that recieves query and read txt file for matching. For it I'm using StreamReader.

I'm not waiting that it will be thousands of users in hour for this service, but whats worried me - if some users at the same time will be use that service is it ok? Can text file on server side be readed at same time from some users?

What is capacity for using StreamReader or StreamWriter on server?

View 6 Replies

Can Write A Text File On The Location Specified By The User Published Application

Feb 2, 2010

I want to create an asp.net application which allow user to specify text file path and create a text file on the specified location by doing some processing from the sql server database.for specifying path of the txt file i am using setting

.xmlsetting.xml
<TextFilePath> "D:Text" <TextFilePath> //as specified by the user.

The code is working fine if it is not published Once the application is uploaded on the server(published) and run under the virtual directory.

View 3 Replies

How To Includ The Rich Text Editor Control In My Application Using The Dll File

Jun 4, 2010

I have included the rich text editor control in my application using the dll file and registering its assembly and namespace.

<%@
Register
Assembly="RichTextEditor"
Namespace="AjaxControls"
TagPrefix="cc1" %>
[code]...

View 2 Replies

Web Forms :: Access To The Path Xxx Is Denied Error When Writing XML File To Folder?

May 23, 2013

 i have a folder in soultion explore that in folder there are some xml file but when write data in c# in xml file,error Access to the path 'E:YavariTCMS-v3TCMSTCMSMDFXMLXMLFile1.xml' is denied. every i remove propertice readeonly from xml or folder that contain xml file ,next tim reade onl true

View 1 Replies

Writing Web Application With Language Support?

Nov 29, 2010

My client has few requirements for his website he want to built. want to discuss best practices to start this project and make this a learning experience.

accessible from all browsers and platforms. (mobile as welll)language supportscalableshould be CMS style so he can assign roles etc for editing. except above my question is what will be best to use as a new project in VS2010 (MVC, web application etc)

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved