POST GET GET GET GET... WTH?
Hi,
I'm at a loss to explain this... I have an ASPX page that I can't
always navigate to. When I developed the app (it's Starter Kit
Portal-based), I did it on my LAN and have had no trouble accessing the page.
However, upon deployment, I see the following behavior:
1. POST request goes out looking for MyForm.aspx
2. GET request for MyForm.aspx
3. GET request for MyForm.aspx
4. ...
X. GET request
Sometimes, the page finally loads. Other times, it just ends up
blank. Many times, it doesn't load at ALL the first POST - I just get a
"The pa...
trying to get started and i am getting this error
when i go to http://www.porkchopsplayground.com, i get:
DotNetNuke Upgrade Error
The Assembly Version ( [ASSEMBLYVERSION] ) does not match the Database Version ( [DATABASEVERSION] )
ERROR: Could not connect to database.
Could not find file 'd:\hosting\nmoran26\Providers\DataProviders\AccessDataProvider\DotNetNuke.mdb'.
Any suggestions will be appreciated.
Thanks,
Nicole
Do you have a username and password set on your database? Make sure you follow the steps mentionned in the Readme.txt located in the documentation folder. In any case make sure your credentials for yo...
how to get start with .NET
the net help people installed to my desktop
1-microsoft visual studio .NET enterprise developer 2003
2-microsoft .NET framework 1.1
what else do i need ...??? and how can i try with some simple code in VS.Net and run it to see
wat happen...?????
please help
If you want to develope web applications, then you'll also need IIS on your PC. That'll require XP-Professional or Windows 2000/2003, but XP-Home edition won't allow IIS installation.
As for how to get started, you can search the web for some tutorials or buy a good book on VS. The topic is way too vast to...
Getting Start With .net
hi
i'm intersted to learn asp.net (vb or delphi) .
i programming with delphi6 but i'd like to tp know something about programming in internet specially with .net .
i hear about microsoft.net with delphi 7 that i can programming with delphi in .net .... is it right ?
what 's our opinian about it ? and better to learn Vb.Net or continu with delphi(or delphi.net)
thanks.
Ali Darabian
I think there is some support for Delphi in .Net.
However, you will find much more support from the user community if you choose a more popular language such as VB.Net or C#. Since your al...
How to get date and time
Hi Every One
I want present date and time with sends
right now i am writing "DateTime.Now.ToString(); " it displays like "2008-12-26 22:35:00"
but i want with seconds also like 2008-12-26 22:35:20
please help mePramoda Chakravarthy Vungarala
Try this..
DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss");
Check this link for more DateTime formats..
http://www.mikesdotnetting.com/Article.aspx?ArticleID=23My Blog"Don't be afraid to be wrong; otherwise you'll never be right."...
get date and time
hello
i have 2 textbox on my page i want to get date and time in textbox3.text as soon as user enter the partnumber in textbox1.text
thanks.
Client or server? If client-side, are you limited to IE (that is, can you use VBScript)?Peter BrunoneMS MVP, ASP.NETFounder, EasyListBox.comDo the impossible, and go home early....
Getting error in Net::SFTP with get function------=_Part_7028_3315294.1193837808284
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Hi All,
I have the following code as part of my program;
print "---=========> $file, $localFile\n";
$sftp -> get( $file, $localFile ) || warn("errrrr0rrrrr
_---> $!".$sftp->status."\n");^M
Even though it has downloaded the file properly, it is giving the following
message:
---=========> /trading/tiscrdenhlist10310000.txt.old,
/export/home/crdadm/rajeev/tiscrdenhlist103...
get rid of that ridiculous getting started bookmarkName: DOCTOR
Product: Firefox
Summary: get rid of that ridiculous getting started bookmark
Comments:
Browser Details: Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en) AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.22
From URL: http://hendrix.mozilla.org/
Note to readers: Hendrix gives no expectation of a response to this feedback
but if you wish to provide one you must BCC (not CC) the sender for them to
see it.
...
getting started in VS2005 C# which book should I get
Hello,
I am getting started with VS2005, I have use VS2003 but not very much -(I did 4 small applications in it), I am wondering which book you would recommend to learn the new features of VS2005, while learning more of C# programing in general
There some links to good books in this thread i posted : http://forums.asp.net/thread/1489422.aspx Also these two make good reference material
Professional Visual Studio 2005 (Programmer to Programmer)
Microsoft Visual Studio 2005 Unleashed
So far I recommend Wrox's C# 2005
Read the beginning chap...
How to get powerbuilder library version, date-time stamp at run-time?Hi,
We would like to see list of all libraries of running application along
with their version and date/time stamp (in about window). We would like to
get version number of compiled powerbuilder libraries (pbd's) at run-time.
I don't know if pibbles compiled in dll format have advanced features (as
regular dll - where right clicking on it and selecting properties will
allow user to see version number of dll). Anyway, compilation of pibbles in
dll format is not an option for us. I would like to see if anybody came
across a solution and would like to share it with me. I ...
Where to start and how did you get started?Hi, I have had a feeling for a long time to jump into the adds market for some time due to my low income (shooting for the stars) and I don't have anything better to do these days. But I find it really difficult not to give up due to lack of guides (what I can find atleast) and all the hard words which only makes me confused. But I won't give up. Never. Not sure if this is the right place to post this, but I deffinitly would be really greatfull for help getting started. How did you get started?
+If there are any teacher that wanna show me the ropes private, I can give payment with ...
How to get week start date, End date for a given week nunber,year?
I want a javascript function to to get the starting date and end date of a week when I have given the week number (1 to 5), Month number (1 to 12), valid year as parameter. How to do that?Manivannan
You can visited http://www.datejs.com/2007/11/I dont have example.Hope it's help you.
try this example
function GetWeekStartEndDate(){ var week = 5; var month = 4; var year = 2008; var PositiveOneDay = new Date(new Date('1/2/2000') - new Date('1/1/2000')); &...
HOW TO COMBINE A DATE COLUMN AND A HOURS COLUMN IN A DATAGRID TO GET FULL DATE AND TIME
Hello There!,
First of all i have a date column and a text box column in my datagrid . i am populating the date column through the below code
DataTable Table3 = new DataTable();
DataColumn Date = new DataColumn(); Date.ColumnName = "Date";
Table3.Columns.Add(Date);
DateTime Crnt_Time =DateTime.Now; int day = Crnt_Time.Day; int mnth = Crnt_Time....
Problem Getting Started
In have run the 1317set.bat file and still get the following error:
Unable to get your db version please run version script against your db and restart your web application (go to update/scripts/ folder and run 1317set.bat).
Any help to get me started would be much appreciated.www.creativenrg.co.uk | www.therivercard.com
Have you checked your connection string? This is sometimes caused by a faulty db connection.
I am new to Rainbow and get the same error when trying to run it for the first time.
Does not matter which of the following I comment out in web.config:
<!-...