I need to Keep track of folder names as linksactually this is not site navigation.we r displaying the folders/subdirectory names as links on the webpage.the task is -(a) on pageload I need to display the main folder - this is fixed(b) the subfolders and files r displayed in a grid.if I click on a folder link the breadcrumb need to be updated.(c) if I click on a link in the breadcrumb the grid should be updated as well as the breadcrumb has to be updated.need breadcrumb examples suitable to my above requirement.
I want to monitor the activities of all the folders present at "C:Inetpubftprootsan".User can work on any type of files and not only text files.Since we have given 1GB space (lets say) to each user, so user can do anything to utilize this space.
Now I want to monitor the activites that the user will do in his folder like creating new file, deleting an existing file or editing a file.I want to monitor user's activities because i have to keep track of the space given to the user so tht i can restrict the user to use 1GB space only and not more than that.
is there any class that i can use other than FileSystemWatcher as it works only in console applications and not in webapplications?
how are you able to create a admin and member folder and seperate the links from the masterpage .The login and register is not done using the asp.conf is done using a customer table
i am using telerik editor for uploading images which are getting stored in images folder.now i want to fetch all images and paths from that image folder and save only image name and path in to seperate database table.
I have a folder with 200+ pictures. I want to get the names of each of the pictures to the database. would it be easier to import and export the images into the database (I want my webpage to be able to show the images once they are in the database)?
When using VS2008 and C# I choose File - New - Web Site.I use namespaces in the aspx files in the same folder.The problem is that the aspx files in one folder can not access the aspx files in other folders even though the files in each of the other folders use the same namespace followed by the folder name.
In fact, if I am in one folder and type the namespaces followed by a period, the other folder names are not displayed in intellisense, only the name of the folder name of the aspx file in which it resides is displayed on the intellisense.
How can I get the other folder names to show in intellisense from any other folder that I am working in when coding in the code behind? fyi, in the html inherit I point to the namespace, the folder name and the code behind file then in the code behind file I code the namespace, the folder name the aspx file is in and the class is the name of the code behind file.
I have been looking for a pretty simple setup for listing files in a directory. I found one, pretty straight forward and works in listing the files. But now i need to modify the code a bit to accomplish 2 things..#1 i need to enable the file names to be links to the file. Currently i have it linked, but points to the server file structure and not the website structure, by this i mean that when you mouse over a file, the link looks like this (file:///c:/inetpub/wwwroot/images/icons/current.gif ) and i need it to look like this ( www.site.com/images/icons/current.gif )#2 Currently for my test page, i have the path setup like this: DirectoryInfo dirInfo = newDirectoryInfo(Server.MapPath(@"imagesicons"));Is there anyway to get the current path for that page, so i dont have to hard code the directory for each page i need this setup on? Also, how can i update the part for the file types to display, i need to display 3 different types, so notsure how to update that line either.Here is the ASPX and Code behind i have setup.
I have a site that allow the user to request a secret report in a pdf format. My idea is to put the generated pdf files in a public folder with disabled directory browsing. Each file name consists of 128 characters that are uniquely and cryptographically generated. The legitimate user will be given the link of his/her own report.
Here is what I am basically trying to accomplish I want to upload images to the server separated into categories and save the file path into the database. I have found plenty of documentation on saving to a file and the file path to a database. But, I haven't found anything that will allow me to seperate the images into categoies.
I have made three tables in the database
[code]....
What I am trying to do is create a gallery for our clients to browse and download different vesions of posters and ad cards.
I have been working with this database for some time. Here is the situation...
I inherited a MS SQL database that has hundreds of tables with similar data. For instance:
FordTampa_customer is a table,
ChevyAtlanta_customer is a table, etc....
All of the columns are the same...just different tables with their own ID field. All I have done...Inside of another database id is created a table called 'Customer' and added an 'Dealer ID' column along with the rest of the other columns in the other tables...
So the combination of the 'Dealer ID' and the 'ID' field are unique.....I know...its not the best way to do things...but I cannot change the old data structure because I cannot have access to it. I am give back-ups on a weekly basis, so this is all I have to work with.
All right, on to the real point of my post...
Currently, I have an application that I use to select all of the data from the 'Ford_customers','Chevy_customers',etc... and inserts them into my new main 'Customer' table. I do this by selecting the table names, bind it to an arraylist, loop through the list and execute an insert statement.
I do this in VB.NET, but I would prefer to do it in a Stored procedure of some kind....I just am not sure how to accomplish it. I use this syntax to get my list of tables:
[Code]....
I am not sure how to take those names from the table and do another select based on that list of names.
I am working on asp.net 3.5 in C#. In my application I have to Create folder and upload file in that folder, which works fine on my machine. I want help for create folder and upload file in that folder on other machine which is connected in LAN. code for create folder and Upload file on my machine
I want to create a folder to store some web controls, so the site structure doesn't have a zillion files in the root.
Except that if I create an ordinary folder, that folder is also visible on the web site. MSDN said you cannot put it in App_Code, and it doesn't really make sense to put it in other special folder like App_Data or App_Theme.
I'm trying to write an application that allows a visitor to use our service for 7 days. After 7 days, they will no longer be able to use it unless they sign up. What's the best way and the most accurate way to track it without collecting their credit card information? I'm trying to use the following code to track visiotr's ip. But I'm not sure if people are able to change their ip address or using a proxy server that will go through.
I am redirecting from A.aspx to C.aspx and B.aspx to C.aspx.In C.aspx i have a button "Back Page". I am implementing as below.If there is a better way pls let me know.
In A.aspx and B.aspx before redirecting to C.aspx,saving the LastPageURL in session
Dim lastPage as string = Request.UrlReferrer.AbsolutePath Dim sArray() as string = lastPage.split("/") lastPage = sArray(Array.Length-1) Session("LastURL") = lastpage On click of Button "Back Page" in C.aspx Response.Redirect(Session("LastURL"),True)
I am recording time taken by a page to be displayed to user, for which I am recording execution end time in page_PreRender. But if the page contains huge amount of data, then it is taking few more seconds after PreRender event. I also tried with Page_Unload, still the same.
I'm curious, anyone know the mechanism a checkbox control uses to remember that its checked or not checked after a postback?If I add them manually to a page via html as in <input type="checkbox"/> I have to use javascript and hiddenfields to keep things checked after a postback and I would have to have an onclick="dosomething()" inside the tags.Viewing the html source code for a page with a .NET checkbox control, there is nothing like that there.
I was writing a custom control and rendered my own checkboxes when I came across this problem. After the postback, the control would reload the checkboxes from viewstate and forget the user had clicked anything. As I couldn't use hiddenfields to track the changes (they got reset from viewstate too), I ended up using .NET checkboxes as childcontrols instead but this experience got me thinking.
What I want is I that I want to keep track of number of visits per page and average time spent on each page and the site. I don't want to use any third (3rd) party tool. How to achieve this with minimum code.
We have a asp.net web form with fairly a large number of form controls (textboxes, dropdown, checkboxlist, gridview,etc..)
There's a profile list (dropdown list) - when a profile is selected from this list, the attributes of that profile should be filled in to the other form controls. then if the user changes at least one of these form values, then the profile list value should be reset to a value 'Common'. this is an item in the profile list.
Basically that means, if a user selects 'profileA' and then changes the attributes of profileA, then the profile list should not display 'profileA', instead it should show 'Common'.
what is the best way to handle this. I know there's a jquery function for 'dirty forms', but I'm not sure how to use this, and where and when to call this function.
I work on a HR application for Internal people.One of my staff member is caliming that he applied for a job, but we do not have any entry in the database for applicants and no error in Log4net.
The staff member calims that he clicked on the Apply Button. And when we checked the IIS log we found one entry by that user in the IIS event viewer. Now how to determine if the person actaully clicked the apply now button or not.This is a serous issue for us as he is very upset as the Advertising for that position is taken off and he cannot apply now.
How to investigate? Also does IIS logs all POSTS and GET Requests?ur system Admin passed me an error log from the event viewer.Which is something like this:
2010-05-05 00:28:57 172.10.12.30 POST /HROnline/Recruitment/Apply.aspx rk=579&pid=0 8600 INTERNALMIISNY 172.20.102.50 Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+5.1;+Trident/4.0;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729
I have a website that I want to distinguish the traffic generate by myself and by others.
I use wireless router to go on internet, so I have a static internal IP and a dynamic external IP.
Is there any way I could track the information of my own machine when I access any of the page of my website? Track the machine name? Track the internal IP?
I have a scenerio like i have a website where by visitors comes in like you have aspforum.net. I want following:
1. when user visit on my site a cookie or script generate on the user machine
2. then if user is searching for shoes, books, or any thing that data should come on my server database so i can trace what is user behavior and likes and dislike.
public void mail() { System.Net.Mail.MailMessage mail = new System.Net.Mail.MailMessage(); System.Net.Mail.SmtpClient smtpClient = new SmtpClient(); //create the mail message //set the addresses mail.From = new MailAddress("kamalakkanavar@gmail.com"); mail.To.Add(TextBox1.Text);