Can anyone tell me what might be the cause here? Here's the Scenario.
I have a website hosted with Arvixe.com and my website has aspx pages as well as a WCF json service (simple enough)
- All is running fine (aspx pages and WCF calls all return without error)
1) I make an innocuous change to the web.config (i.e. add a 'space' to a commented area)
2) move the newly modified web.config from my machine to Arvixe via ftp...
User Profile
Collapse
-
500 Err if you modify Web.config (WCF service applet)
-
Recommendations for IIS hosting
Looks like my website is about to outgrow Godaddy because the database space is going to exceed 200mb so that alone is forcing me to go elsewhere... just not sure where.
I came across a few review sites that offer suggestions but wondering if anyone here has any first hand experiences they could share, good or bad. -
thanks, they do allow an upgrade to business class and extra bandwidth so that's where I'll start. My issue is when I exceed that limit as well. I'll try giving my provider a call -
best choices for sending email?
most smtp services limit the amount of emails to 200 -500 / day. In my app I can't anticipate how much it will grow and it may quickly exceed that limit on daily sends. Does anyone know a good solution for sending many emails in a day? -
I guess I could have just as easily looked that up on my own, sorry. Anyway it looks lie as early as 2011 MS announced that they recommend migrating to sqlclient as the .net provider. It'll pay for me to stay connected to these things in the future. Thanks for this : )Leave a comment:
-
is ole no longer recommended?
Can anyone tell me if using ole to connect to my databases is "out of vogue"? I've been using it for years and only recently heard that I should probably be using ADO.net or other instead. -
-
when I say $('#myStartButt onID') I don't mean that literally. replace the text "myStartButtonI D" with the ID of your actual button. Also keep in mind if the game panel object that that button is inside of is hidden then it will not work. Instead you will need to set the panel to visibleLeave a comment:
-
Native Javascript has a settimeout function. Here's an example that will set your button to visible after 3000 milliseconds. You could call it at the end of your EndGame function. Or set the visibility to the game panel itself.
Code:setTimeout(function() { $('#myStartButtonID').css('visibility', 'visible'); }, 3000);
Leave a comment:
-
I figured it out finally. I am using this within a Wavemaker project. Wavemaker has a bool property I did not see called "DownloadFi le" set that to true and it all works. I just LOVE when stupid little problems consume 3 full days : )
-
Once again, thanks for looking at it with me Frinny!Leave a comment:
-
no luck. I can't even figure out how to do it with a simple text file.. This little sample writes my file out to a directory. How would I write it out to the client for download?... man I feel like an idiot : )
Code:String data = "My Text To Put In The File"; byte[] byteData = data.getBytes(); OutputStream out = new FileOutputStream("MyFile.txt"); out.write(byteData);
Leave a comment:
-
if this is a website (as opposed to a web application) you can create a folder called App_Code in the top level directory. Your C# code will compile alongside your vb code.Leave a comment:
-
-
yes - typically these things are accomplished using Active X controls. Not sure if Active X has been replaced by another technology since it's been around for quite some timeLeave a comment:
-
funny enough that didn't seem to work when I tried it but perhaps I wasn't doing it correctly - Thanks Frinny... I will revisit that pathLeave a comment:
-
File download to client... new Java user
I'm a seasoned .net guy - new to Java. I'm Trying to do the simplest of things but can't figure it out. In my web form I want to create a csv file (from a json string) and present it to the user to download (I do not want to specify a directory - let the user do that)
I have this working code which writes my file to a directory but really all I want is for it to download in the browser - NOT write to a filepath. How is this done?... -
Can you summarize MS's licensing model?
I architect, build and deploy custom web applications for a company using MS Sql Server, IIS, and .net. As I look to open my own consulting business I find myself confused as to how Microsoft prices licenses for instances of SQL Server and IIS. MS web resources on the topic are very vague and require a consultation before they give any prices. Can anyone give me a high-level idea of 1) Which instances of what require licensing and 2) basic cost... -
found my answer....
UpdateMode="Con ditional"
Code:<asp:UpdatePanel ID="update1" runat="server" UpdateMode="Conditional">
Leave a comment:
-
Why is Calendar rendering when behind an UpdatePanel?
Gang, I have 2 calendar controls. Both within their own update panels. Why is it that both DayRender events (for both calendars) fire when an event is triggered from within either panel? - I would like for the dayrender event for ONLY the one calendar to be fired - not both.
What am I doing wrong here?
here is the simple layout
Code:<table> <tr><td> <asp:UpdatePanel ID="UpdatePanel1"
-
No activity results to display
Show More
Leave a comment: