Asp.net - TortoiseSVN: Any Need For _svn Instead Of .svn Anymore?
Apr 1, 2011
A few years ago there was a bug involving ASP.NET and Tortoise/AnkhSvn (can't remember the details),and the solution was to set Tortoise to use "_svn" instead of ".svn" folders for its hidden local files.There's an option for it on the Tortoise settings dialog.So I still need to do that, or is it not an issue anymore?
View 1 Replies
Similar Messages:
May 5, 2010
when I update Adobe Flash/Flex code that is not related to ASP.Net with TortoiseSVN (latest) on a Windows Server 2008, the complete website locks and stop responding.Is it ASP.Net recompiling my code, is it IIS 7 or is it Tortoise locking the file system?How can I prevent or minimize this if I need to do an update when 1000 users are using the ASP.Net website?
View 2 Replies
Mar 27, 2010
I have relatively little experience. I suspect this is a simple problem but I couldn't find the answer. At the top of each page I have a Home link which was working fine as long as all my ".aspx" files were in the root directory.
But after reading a little bit about authorization, I moved all the files dealing with the membership database into a Membership folder with its separate web.config to restrict access to anonymous users.
My anchor is: <a href="default.aspx">. Now if I am on a membership page it is looking for SITENAME/Membership/default.aspx. I have tried many different specifications, e.g., ~/, ../, /, etc. The "~/default.aspx" results it looking for SITENAME/Membership/~/default.aspx.
They all fail except an absolute complete path specification. However, this causes the logged on user to be logged off!
View 6 Replies
Aug 31, 2010
I have an web application which in converted from vs2008 to vs2010. This app. has one simple reports, which is also converted. Now I have a few problems.
The converted report doesn't render anymore. Somehow the dataset I used is not visible to the report anymore. So I decided to delete this datasource and create a new one, using the new interface in VS 2010. The annoying with this is that the new dataset, which is created when I follow the wizard, in the root of the application. As soon as I move this dataset to a folder (in my case the DataSet-folder), the reports doesn't see the fields anymore. So I copied the dataset back to the root, to solve this problem.
However, when I render the report, i got an error message saying "A data source instance has not been supplied for the data source 'name-of-the-dataset'"
View 2 Replies
May 13, 2010
I've some really strange behaviour with a simple ASP.NET Button. Here's my code:
[Code]....
For some reason the first time I click this button, the code is beeing fired. When login credentials are wrong, a message shows up. THen, the user inserts the right credentials. After clicking the 'cmdLogin' button, nothing happens and the old (wrong) values are beeing filled in inside the textboxes. This behaviour occured to me after switching to ASP.NET 4.0.
View 1 Replies
Mar 23, 2010
I have an ASPX web site and I have code in there to redirect from the login page with the call to
"FormsAuthentication.RedirectFromLoginPage(username, false);" This sends the user from the root website folder to 'website/Admin/'. I have a 'default.aspx' page in 'website/Admin/' and the call to redirect works on a previous version of the website we have running currently, but the one that I am updating on a separate test server is not working. It gives me the error "Directory Listing Denied. This Virtual Directory does not allow contents to be listed." I have this in the config file:
<authorization>
<allow users="*" />
</authorization>
under the "authentication" option and...
<location path="Admin">
<system.web>
<authorization>[code]....
for the location of Admin.Also, there is no difference in the code between the web.config, Login.aspx, or the default.aspx files on the current server and the one on the test server, so I am confused as to why the redirect will not work on both. It even works in the Visual Studio server environment, for which the code is also identical.
View 1 Replies
Jan 25, 2011
Are beginRequest and endRequest working while sending and retrieving data with jquery? In my observation these functions (see below) are not working anymore. Is this because it's not a real postback?
function pageLoad(sender, args) {
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginRequest);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequest);
}
View 1 Replies
Jan 23, 2011
I created an application that basically takes the values from a bunch of fields on the page and adds the data to a SQL database table when I click the 'submit' button. However, I created the file directly under the website path, and I created it while it was like that and I tested it without any user authentication going on.
Now, I'd moved it into the ~/Account/etc/... path, because I only want it to be used by authenticated users, and it loads just fine, but when I click the 'submit' button as I used too, it doesn't seem to be loading the info in the database anymore. Why would that happen? do I need to enable SQL to work with the authentication as well?
View 5 Replies
May 26, 2010
I am trying to write an asp.net webpage which contains an applet. Everything works fine when I run this in a development folder, but when I move it to the IIS web server public folder it doesn't work anymore. I don't get any error message. The browser doesn't repaint the applet area Here is the source code:
//web page
<script src="http://www.java.com/js/deployJava.js"></script>
<script>
var attributes = { code:'ImageApplet.class', archive:'ImageApplet.jar', width:864, height:1000} ;
var parameters = {jnlp_href: 'image-applet.jnlp'} ;
deployJava.runApplet(attributes, parameters, '1.4');
</script>
//applet
public void init() {
buildUI();
}
public void buildUI() {
JButton jumbleButton = new JButton("Jumble");
jumbleButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
};
});
add("South", jumbleButton); }
View 2 Replies
May 30, 2010
I have an appliaction, that I converted to 4,0 framework. since the conversion the authorization parts doesn't work any more. this
[Code]....
just won't work anymore.... I have madee lots of changes in web..config, so maybe ruined something...where should I look for ?
View 1 Replies
Oct 26, 2010
I've wrote the comprehensive post within my blog: [URL] In brief words everything is simple:
1. I've downloaded free Visual Studio C# 2010 Express and Visual Studio Web Developer 2010 Express
2. I've successfully installed these versions.
3. I've tried registration online - and got the appropriate keys which I've used for registration.
Finally all the keys I've got are not valid for the system - and after 30 days evaluation (for free version?) period all these products are not running anymore because all the keys I am providing from online registration are invalid.
View 2 Replies