I am running a VBScript that hides or shows a number of controls when items in a dropdownlist are selected.
It runs fine the when it loads up, but if a button is clicked, or any button on the datagrid I'm using is clicked, suddenly all the controls appear and the dropdownlist doesn't work...
I've heard that it's possible to drag text from one textbox and drop it into another textbox. I've looked for examples on this, and I haven't found anything yet that is helpful. Does anyone know either how to do this, or know of any good examples they could point me to?
True. I realize that, but at the same time I wasn't sure where the problem actually lied. In fact, I'm still a little unsure which aspect of the code is actually at fault. Because the behind processing was being done by ASP.NET and the frame navigation done by Javascript, the lines start to...
I fixed this now. Basically the thing I keep forgetting to do no matter how many times I use datagrids is that I forget to bind my using postback properly. Like this:
If IsPostBack = True Then
Else
bindData()
End If
You can find a lot of issues I've...
Okay I solved this. This one wasn't easy though. There's a very long thread where I worked this out and I have the solution near the bottom of the first page and in the second page. You find this thread at:
http://forums.aspfree.com/showthread.php?s=&threadid=19740
Okay nevermind, I got it figured out.
I don't know why, but for some reason whenever I sent a path file I would get this error. So I redid my code to accept a link instead and then convert it into a path file if needed. Very frustrating.
Anyway For frames you can use this...
Okay I have a very odd error that nobody can figure out. I'm using frames, and I'm trying to send a string through the frames.
<input onclick="window.parent.frames.item(1).location = '<%=forwardLink%>';window.navigate('topbar.aspx?file=<%=forwardFile%>') " type=button...
I'm trying to use the Title from a PDF file's "PDF Propertites" using ASP.NET . So far I've found little information about the problem.
I know that it is possible to do using ASP, but since I am currently trying to convert a program from ASP to ASP.NET I can't do it that way.
Does...
I’m having some trouble with the Update function in my datagrid. It doesn’t seem to be getting the data from the textboxes for some reason, and I can’t understand why at all. Here’s the snippet of code where I try to get the data from the textbox.
Dim itemValue =...
Hey BoulderBum,
Sorry I didn't respond earlier, I only work on weekdays :P
I tried out your Char.IsPunctuation(charAr(0)) which produced much more encouraging results (besides, it's slimmer and easier to read)
As for reading the array while debugging, that doesn't really work because my boss...
I'll try that out.
But as for the End If's, you can use a single line IF statement by using THEN. So for example: If (Stuff = true) then stuff = doMoreStuff
I've been pulling some data from the database, and it's returning a string of 10 characters. (I can't modify the database, so I have to do this programically) If there is no value in the string, it still returns a length 10 string with 10 invisible characters (The data type from the database is...
I am having problems using a Datagrid
I've followed many tutorials and as far as I can tell I'm doing everything I'm
supposed to.
1. I've created the HTML part of the datagrid (There's a little more to it but
there's no need to add it here):
<Columns>
<asp:EditCommandColumn...
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.