Thread ini buat yang butuh solusi dari permasalahan C# dan ASP.NET
mungkin ada yang baru ngamnbil Program Profesional en kesulitan bs posting disini
disertai potongan code dan error message-nya..
moga2 saya dan teman2 yang lain bs membantu ^_^
bbPress database error: [Can't open file: 'bb_users.MYI' (errno: 145)]
SELECT * FROM bb_users WHERE ID IN (487,549,527,601,602)
Thread ini buat yang butuh solusi dari permasalahan C# dan ASP.NET
mungkin ada yang baru ngamnbil Program Profesional en kesulitan bs posting disini
disertai potongan code dan error message-nya..
moga2 saya dan teman2 yang lain bs membantu ^_^
btw,ada yg tau settingan iis ver 5.1 utk mslh upload size ga??
kmrn ak bikin web yg ada upload videonya pake ASP.NET tp ada masalah upload sizenya klo lebih dari 4 MB ga bs..
ada yg pny solusi ga??
Q4: My ASP.NET version doesn't seem to allow uploading more than 4 MB of files. What's wrong?
A4: By default, ASP.NET limit the size of the file uploads to about 4MB. To upload large files, and not receive errors or the page stopping while uploading, there are 3 settings in the machine.config and the web.config files that you need to modify.
In your web.config, add a line under your <system.web>
<httpRuntime executionTimeout="54000" maxRequestLength="512000" />
where executionTimeout is in seconds, and maxRequestLength is in KB. executionTimeout is the amount of time a thread will continue to run, and accept data. maxRequestLength is the total amount of data that can be sent through an HTTP Post to the server. The default is 4MB (4096)- this is normally set low so that your server will not be overwhelmed by possible DoS attacks.
In your machine.config, modify responseDeadlockInterval to equal the same amount of time for executionTimeout. responseDeadlockInterval is the amount of time that the Client's browser and Server will continue to communicate. Every several minutes or so, the server polls the client asking if it has more information to send; if it does not receive anything back after several times, then the server stops the current thread and all communication is stopped. This is the cause of the error you may see sometimes.
These 3 changes will allow you to successfully upload large files.
ngambil dari http://www.aspplayground.net/forum/tm.aspx?m=376095#q4
Cari aja ebooknya, banyak koq gratisan di internet.
www.free-ebook-is-here.com
Lengkap juga tu koleksinya, tinggal search disitu, donlod dah sepuasnya.
di ASP.NET klo pas aku pake perintah Response.Write("pesan")
koq label-label lain yg udah diubah sizenya jd Large, tampilannya jadi Lebih besar lagi, tampilannya jd hancur gitu dech di browsernya. Kenapa ya?? apa karena browsernya??
di semua browser gitu?
bs sertain contohnya?
hwehehe
sapa tau bisa bantu
n kalo buku2 sih biasane cari di ebookee.com atau itstudy8.org n knowfree.net
banyak ngunduh
tapi gak ada yang dibaca, gyarara
mau nanya kk2
kl pake C bisa buat sms gateway tidak ya?? soalnya cari2 diforum2 tetangga & luar rata2 pake java
Lah bahasa C??
Susa tuh pasti klo mau bikin sms gateway disitu.
Dah bikin aja pake framework .Net, pake C# ato VB aja.
Untuk componentnya pake aja dari http://www.activexperts.com/
Baca disitu tutorial-nya, lengkap koq. Dulu pernah bikin juga, dan sukses..
You must log in to post.