Forum: ASP.NET Feb 17th, 2009 |
| Replies: 4 Views: 382 Go to http://www.connectionstrings.com
It is your friend. Bookmark it. |
Forum: ASP.NET Sep 10th, 2007 |
| Replies: 15 Views: 68,678 I am no longer amazed by newbie posters who tell people that have consistently been on this (or any) forum for a long time helping people how to help people. Sometimes, the best way to help someone... |
Forum: ASP.NET May 31st, 2007 |
| Replies: 2 Views: 1,159 are you using c# or vn.net? |
Forum: ASP.NET May 22nd, 2007 |
| Replies: 2 Views: 776 |
Forum: ASP.NET May 22nd, 2007 |
| Replies: 10 Views: 17,380 this is a community help forum. We help you with your problem, we don't do everything for you. Tell us what you have tried and what problems your are having and we will help you solve them. We won't... |
Forum: ASP.NET May 22nd, 2007 |
| Replies: 2 Views: 3,979 of course it is opening in a new window, you are using window.open.
use
document.location = "page2.aspx?username=" + lstruser |
Forum: ASP.NET May 9th, 2007 |
| Replies: 6 Views: 3,077 why? Because it saves you a roundtrip and a server call, and is faster and more efficient. |
Forum: ASP.NET May 7th, 2007 |
| Replies: 6 Views: 3,077 hopefully, this will get you going in the right direction.
var tb = document.getElementById('TEXTBOXID');
var tbVal = '';
if(tb !=null)
tbVal = tb.value;
... |
Forum: ASP.NET May 7th, 2007 |
| Replies: 3 Views: 2,457 can you give us some sample data? |
Forum: ASP.NET Mar 1st, 2007 |
| Replies: 1 Views: 7,903 ok, figured out the problem. needed the following line in the aspx page. Evidently, this makes functions from the master accessible by the content page
<%@ MasterType... |
Forum: ASP.NET Mar 1st, 2007 |
| Replies: 1 Views: 7,903 ok,
I am new to master pages. I have created a public function called setMenu in the cs file.
I can call this function fine from about half of my pages, but when i try to call it from the other... |
Forum: ASP.NET Feb 26th, 2007 |
| Replies: 2 Views: 1,343 well, are you using c# or vb.net, what kind of database are you using, what fields are in the database, what textboxes, dropdowns etc are you getting information from to populate said fields, are you... |
Forum: ASP.NET Feb 23rd, 2007 |
| Replies: 2 Views: 1,014 |
Forum: ASP.NET Feb 15th, 2007 |
| Replies: 3 Views: 1,758 i believe square brackets, not parentheses, should be used when referencing a column
l1.Text =Reader("Username");
should be
l1.Text =Reader["Username"]; |
Forum: ASP.NET Feb 5th, 2007 |
| Replies: 4 Views: 6,329 |
Forum: ASP.NET Feb 5th, 2007 |
| Replies: 4 Views: 6,329 textBoxName.Text = DateTime.Now.Month.ToString()+"/1/"+ DateTime.Now.Year.ToString(); |
Forum: ASP.NET Feb 2nd, 2007 |
| Replies: 6 Views: 4,667 do something that you now will cause an unhandled excpetion on one of your pages |
Forum: ASP.NET Feb 1st, 2007 |
| Replies: 6 Views: 4,667 let me give you some sample code. You don't need to change web.config at all
you want to put this code in your global.asax code behind. This is for C#.Net but you should be able to convert it to... |
Forum: ASP.NET Jan 31st, 2007 |
| Replies: 9 Views: 1,606 yes the site hosting the .net code needs the framework |
Forum: ASP.NET Jan 26th, 2007 |
| Replies: 1 Views: 7,831 System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
mail.To = "whoyouwantmailtogoto@yoursite.com";
mail.From = "whoyouwantmailtoshowfrom@yoursite.com";
mail.Subject =... |
Forum: ASP.NET Jan 23rd, 2007 |
| Replies: 1 Views: 1,210 figured out what is causing it, though still not sure why. Had the app pool set to recycle the process if it got bigger than 1024M of virtual memory. It was recycling whenever it got to about 60M... |
Forum: ASP.NET Jan 23rd, 2007 |
| Replies: 1 Views: 1,210 Hey, I have a problem. My asp.net application just ends after about one minute and I have no idea why. Running server2003 x64. Any ideas |
Forum: ASP.NET Jan 12th, 2007 |
| Replies: 2 Views: 2,647 a) wrong forum
b) what website? |
Forum: ASP.NET Jan 12th, 2007 |
| Replies: 3 Views: 4,479 that would not be a good way to do it. Opening yourself up to a SQL-injection attack |
Forum: ASP.NET Dec 22nd, 2006 |
| Replies: 3 Views: 4,479 well, what is the value of city_name.Text when you run the query |
Forum: ASP.NET Nov 28th, 2006 |
| Replies: 2 Views: 6,835 i would use javascript for that. |
Forum: ASP.NET Nov 16th, 2006 |
| Replies: 4 Views: 13,942 looks to me like his server isn't set up to run .net and it is just returning the code |
Forum: ASP.NET Oct 24th, 2006 |
| Replies: 1 Views: 2,185 i think you want:
select count(term), term from TableName group by term |
Forum: ASP.NET Oct 24th, 2006 |
| Replies: 2 Views: 1,869 do you want the changes to take place immediately? or after form is submitted? |
Forum: ASP.NET Oct 24th, 2006 |
| Replies: 3 Views: 22,406 it depends on how that column is setup in the database. Is it set up as an identity column? |
Forum: ASP.NET Aug 23rd, 2006 |
| Replies: 14 Views: 7,195 um this wouldn't work at all |
Forum: ASP.NET Aug 8th, 2006 |
| Replies: 1 Views: 1,034 sniff...sniff...I smell a homework question |
Forum: ASP.NET Aug 1st, 2006 |
| Replies: 15 Views: 68,678 just like it says, at the top of every page |
Forum: ASP.NET Jul 8th, 2006 |
| Replies: 9 Views: 5,603 also, if your control is inside another control (eg table) viewstate needs to be enabled for that too |
Forum: ASP.NET Jul 5th, 2006 |
| Replies: 1 Views: 5,000 i just posted an answer to a very similar post under the software development section under c#. Check that one out |
Forum: ASP.NET Jun 30th, 2006 |
| Replies: 14 Views: 7,195 well where are you going to store this variable? database, file? |
Forum: ASP.NET Jun 30th, 2006 |
| Replies: 14 Views: 7,195 I would instantiate an application variable in the application on start pulling the value from whereever it is saved
Increment it in session onstart
Save it back to whereever in application... |
Forum: ASP.NET Jun 27th, 2006 |
| Replies: 9 Views: 10,393 um, that line doesn't appear anywhere in the code you posted |
Forum: ASP.NET Jun 27th, 2006 |
| Replies: 2 Views: 2,161 this is very odd code, so let's start by cleaning it up a little
sql = "SELECT * FROM tblcsvdump"
set rs = connection.execute(sql)
records = rs.Fields.Count
dim heading(100)
dim pulled(100)... |
Forum: ASP.NET Jun 26th, 2006 |
| Replies: 2 Views: 2,516 I'm not familiar with ATLAS, but I have played around with AJAX. I actually created a solution to the "disabling the back button" problem using it, but it did not work with some of the lesser used... |