I currently have an application I wrote for a company to manage their projects. We've developed it enough over time that it has become fairly useful for them, and other companies in their industry...
Type: Posts; User: SeanGrebey
I currently have an application I wrote for a company to manage their projects. We've developed it enough over time that it has become fairly useful for them, and other companies in their industry...
Lot's of weird stupid crap, like image buttons inside of update panels causing the page to crash, sessions logging out whenever you click on a link, jquery components erroring out. Our staging site...
IE10 is a nightmare. I don't know how many support calls I hear our IT help desk guys get about things on our site not working correctly and the answer is always put it into compatibility mode...
SOB ok I figured it out. I feel pretty stupid now.
This issue is with this line:
oSQL.GetFileName(strFileName, gvFiles.DataKeys(e.CommandArgument).Value()) returning an empty string, so...
SOB ok I figured it out. I feel pretty stupid now.
This issue is with this line:
oSQL.GetFileName(strFileName, gvFiles.DataKeys(e.CommandArgument).Value()) returning an empty string, so...
That's why you assign access to the AppPool Account to the specific Folder security options (that is in the file system I have assigned Network Service to have full control over that folder, and have...
Sorry, the Delete button embedded into each row and fired with a RowCommand.
<asp:GridView ID="gvFiles" runat="server" AutoGenerateColumns="False" Width="100%"...
When I try to delete within the RowCommand, I get an Access Denied Error, outside, no Access Denied Error.
i.e. on the same page:
This works where txtTestDelete.Text is hardcoded to...
I'm having an issue (in ASP.NET but this is more of a general VB.NET question) where System.IO.File.Delete works on a page outside a gridview but not inside of it. I'm a bit tired of trying to figure...
Huh almost sure it is the gridview now. Thought maybe it was the built in delete, so did a button instead and named the command "deletefile" but that didn't resolve it. So I tried dropping the one...
Strangely this may be my issue and I don't know why.
I tried moving where the documents are to just C:\Documents\ACSDocs\ on the server, gave it rights to Network Service, dropped a button on it...
The AJAX toolkit has one too, but, well, the toolkit blows all around...
Protected Sub gvFiles_RowCommand(sender As Object, e As System.Web.UI.WebControls.GridViewCommandEventArgs) Handles gvFiles.RowCommand
' Finish Me
' Restrict users to...
You sure on that? Granted it is been a while but I thought having a head content section didn't come until later versions.
It already has full control. Something weird is going on, and I'm not sure what. I'm wondering if it has something to do with the folder it is in. I didn't really know IIS 7 when I loaded this guy...
2008 I think you have to drop your own Content sections on the Master Page. But it still should be as easy as creating a new page then and somewhere on the lower right is gives you an option to use a...
Create a Master Page. Put a Content area on it (since 2010 I think it defaults to a Header Content and a Content1, maybe 2012).
Create a new Web Page, it will have an option to select master page,...
I have an application that allows users to use a FileUpload object to upload files to a directory on the web server. The upload part works fine, but if they later try to delete the file they get an...
Lot's of weird stupid crap, like image buttons inside of update panels causing the page to crash, sessions logging out whenever you click on a link, jquery components erroring out. I have a list...
Was going to suggest this. MS Chart is fairly simple to use. No reason to remake the wheel.
Sean
The amount of issues we are having with it is staggering.
Anybody have any advice for dealing with user's using IE10? I mean it seems to literally break half the functionality on the site I am working on unless you run it in compatibility mode.
What about 29 and 28?
If you don't want to/can't for some reason use built in MySQL, you can always do a loop where you check to see if empid exists in the database before you insert, and you keep looping and incrementing...
Get a copy of their database, restore it locally, write an SSIS package to transfer the data from it into your new database?
Access it where? Visible=false and you can still access it in code behind with no issues.
I am using a custom control. In one of the places I use it, every time I save Visual Studio modifies it, which breaks my application. I am beyond frustrated. Anybody know what causes it or how to fix...
SO when you click Save, on the screen, your file upload control has a file name displayed in it, but when get to the point in the code to Save it is empty? A postback shouldn't clear a FIleUpload...
Define "Not Working". That's not very helpful. Does it throw an exception? If so, what exception? Is the FIleUpload1.FileName field empty? If so, where are you opening the FileUpload.
Here is...
With just a quick glance, I'd say the problem is you are looping until you reach zero, but if you are depreciating based off of 1/nth each pass, your number will always approach zero but never reach...
This javascript in the page_load resolved it:
function setBodyHeightToContentHeight() {
document.body.style.height = Math.max(document.documentElement.scrollHeight,...
SO I created a Panel to use to drag my modal popup, but any movement of it when you release the mouse it returns back to it's original position. ANy idea what causes this behavior and how to stop it?...
Probably lot's of ways to do it, e.g.:
Dim MyID as int32= Convert.ToInt32(Replace(DirectCast(sender, DropDownList).ID,"ddlAnswer",""))
I think that will work, basically strip your ID back out...
Don't? I'm beginning to despise it myself. Tired of using the toolkit and ending up with output that looks like this. It is just too flaky, especially when you nest controls.
97181
Stop trying to compare it to VB6 and you will sleep much better at night. Just because you could get away with something doesn't mean you should. That can lead to all sorts of issues down the road...
That should be apparent by the fact it isn't working. Events fire based on different actions. Put things in their proper place. The couple extra lines of code aren't going to hurt you to make sure...
Is class file some type of Form? You seem to be showing barely related bits of code here.
You defined:
Dim French, German, Spanish As Integer
But then try to set their values to words:
If FrenchScore <= 40 Then French = "Passed" Else French = "Failed"
If...
That's not remotely the code he posted for you...
You are trying to do everything in one event, he showed you how to do it with three events...
Where are they defined? YOu are passing them into the constructor, but they have to be coming from somewhere you haven't posted in the code you've shown...