Current Accounts | Bad Credit Loan | Credit Counseling | Loans | Credit Reports
.net woes [Archive] - ZGeek

PDA

View Full Version : .net woes


Vardsy
15-09-2005, 09:51 AM
Is there anyone out there who can help me troubleshoot some .net problems I am having?

I am having a drama with the textbox that allows users to add a new job vacancy on our website.

When they enter say 2 or three paragraphs of text the last bit gets cut off.

Vardsy
15-09-2005, 01:58 PM
I found out that it was actually a problem with the SQL database.

The table was set to varchar (1000) changed it to 3000 characters and all the whingers at work are now whinging a little less than usual.

Everyone who replied to my initial post gets a $500 cheque.

Colonel Kurtz
15-09-2005, 02:33 PM
ROFLMAOA/S/LOLLERCHOPTERRIFFIC!!!!!111!11111

.net bites, it keeps fucking up with half of the Rockwell software I have to use

locust
15-09-2005, 02:37 PM
Using MySQL by any chance?

C0V3R
15-09-2005, 08:24 PM
.net is good.

If you want to store big blocks of text you should consider using an N-text field in the db. It can store arbitrary sized strings.

C0V3R
15-09-2005, 08:30 PM
Also you should consider changing the ID's of your controls to be meaningful values, just good coding practice.