|
Hey there,
another beginner problem. Why isn't the following code with an asp.net page not working?
protected void Page_Load(object sender, EventArgs e) { List<string> list = new List<string>(); list.Add("Teststring"); this.GridView.DataSource...
Started by noisecoder on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Example:
protected void Page_Load(object sender, EventArgs e) { List<string> list = new... .
This is what will link the control to its data source and load the results .
You forgot to call the GridView's .DataBind() method.
You should call DataBind().
|
|
Hi all,
The form is an About Us form so has nothing on it only a text box and a OK button.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Close() End Sub
Here is how I'm opening the form:...
Started by Scott on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I am betting the event handler for the button1_click ... .
After the Show method is called, the Visible property returns a value of true until the Hide method is called .
From MSDN:
Showing the control is equivalent to setting the Visible property to true .
|
|
Hi,
I am trying to close a window using window.close() but this works on IE only but not on Firefox. Has anyone encountered this one and any work around?
Thanks...
Started by mcxiand on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I live on the side of the population that believes .
This trick , but I have no idea whether it will work.
|
Ask your Facebook Friends
|
Next Semester I will be taking a "Software Practive II" class. In that class, my professor wants us to learn XNA. I have been playing around with XNA for quite sometime, and enjoy its functionality and simplicity. However, XNA does not take advantage ...
Started by Benshums on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm also curious....
I would recommend SlimDX
Drag is just a wrapper for movement while a mousebutton is down, and that's certainly easy enough to do .
You could try Managed DirectX (MDX - veering into "unsupported" territory there), SlimDX , or even WPF 3D.. .
|
|
The classic google test here from selenium website, it works in FF on vista. On IE7, apparently doesn't find the window object. Selnm gets farther in the test (On IE) when I change config to using " iexploreproxy", (instead of " iexplore") but I cannot...
Answer Snippets (Read the full thread at stackoverflow):
File://C:/Users/myname/AppData/Local/Temp/customProfileDir....
It works now! Here was the path just for history.
I found that the internet options, connections, LAN settings has a automatic configuration script/custom profile that was interfering somehow in IE .
|
|
I use TortoiseSVN normally and it works fine
Whenever I try to use svn from the command line I get an
c:\code\MyProject> svn status svn: '.' is not a working copy
error even though its the same directory that I usually work with using TortoiseSVN.
...
Started by George Mauer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example:
TortoiseProc.exe /command:checkout /url:"< < your repository url>>" /path:"< < your working copy path>>" /closeonend....
That's because you have not given the full path to your svn instal when trying to run "svn" .
|
|
I added a drop down to a PHP contact form which pops up in a jquery, it seems to work just fine with Firefox but does not submit when using IE.
URL: http://site.ctuchicago.com
Started by Extelliqent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Submits fine for me....
I can only direct you to a tool I use when i have similar problems(besides my angerball, which is number one tool for cross browser css compatibility), firebug for ie .
As someone else said, welcome to wonderful world of webdesign .
|
|
If I have a long-running Postgres query, and regular "kill [pid]" doesn't work, and pg_cancel_backend doesn't work, what should I do?
Started by mike on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Note that I have seen a few times....
Not -9.
If that doesn't work you could that doesn't respond to a pg_cancel_backend() call from the shell with
kill <pid>
i.e.
Pg_cancel_backend is equivalent to sending SIGINT to the process.
|
|
In the 2009.1 version of Perforce Visual Client for 32-bin Windows, the "Reconcile Offline Work" option does weird things. In the middle box where the "Local files not in depot" should be displayed, I never get anything. What I do see is that the first...
Answer Snippets (Read the full thread at stackoverflow):
So the solution which worked for me in the past was to trash the problematic workspace and create....
I seems the problem is likely to occur if I change the workspace view somehow and/or upgrade P4V to new version .
This certainly sometimes happens.
|
|
There is a simple controller action in my application that works without a problem on my locale machine but doesn't work when uploaded online (same directory structure etc, it's completely identical).
Here is error message I'm getting:
Warning: include...
Started by Richard Knop on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Html/test2/application/modules/default/models/ExtraItemsAllowanceXRef.php
If the file doesn't exist you will get.
|