ASP.NET Web Application Desgin Tool [closed] - asp.net

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
i have an ASP.NET WebApplication which i have uploaded to hosting site. I shifted control of site to client, so they can customize aspx pages and change the style of site.
My Question is that, is there any Free tool that can be used to manipulate aspx pages along with preview of that page? Site also has master page too.
Please share the link if you know any. I also googled and found few tools. they are either paid, or they doesn't have live preview of site.
Thanks

There is Visual Studio Express but it is only for technical people, I wouldn't recommend it for anyone non-technical unless the changes they need to make are quite simple.
The "preview of site" as you call it, makes me wonder whether you are expecting to find a tool that will preview changes in the aspx files before saving them, which sounds a bit sci-fi to me...

Related

Will web scraping only cause harm to those who have a website? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
Today I scrape a website using beautifulsoup4 and try to fetch about 16.000 data on that site.
And just few minutes after that, that site got down and can't access about few hours.
So.. my question is:
Will web scraping only cause harm to those who have a website?
First of all, it is advisable to check out the robots.txt file of every site before bombarding it with automated requests like you just did. It is not good for the website owner as well as for you. In order to scrape a website, follow these steps before starting to write a web scraper:
Check if the website has an API available already to make your task easy. If not, then go to step 2.
Check out the robots.txt file which is present at www.anywebsite.com/robots.txt. If the owner has listed this page (which in most cases he will), you can see whether robots are allowed to access the website or not. If yes, then check out which pages are disallowed and also check if there are any rate-limits for it.
If the robots.txt file is not present, then make sure you are gentle enough not to shoot requests to the website at bullet-speed. It might cause harm to the owner and you might get blocked forever from accessing the site.

How to make Wordpress websites from scratch [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am currently learning front end web development. So far I am pretty familiar with HTML and CSS. I can make a website with (hours of)tinkering. I am going to learn some more advanced css and Javascript along the way. I have a website I am building from notepad and my question is: How do I upload a custom website to wordpress? I mean like is there a way to upload the files instead of using wordpress system.
EDIT: I was notified that this may have not made perfect sense. I apologize. I am working on a website as practice. It is being built in notepad and I was just wondering if there is any possibility of publishing it to the internet. Is there some sort of hosting service available for that kind of thing?
"Building a website with notepad" and building a website with Wordpress are TWO DIAMETRICALLY OPPOSED approaches.
SUGGESTION:
If you want to learn wordpress, then install wordpress, work through a couple of tutorials, and play with a couple of different plugins and different templates. Focus on "Wordpress", not HTML or any underlying technologies.
NOTE:
You really don't have to know ANY HTML or ANY Javascript to effectively use Wordpress.
But if you DO get serious about "what's under the covers" with Wordpress ... then you'll likely be getting your hands dirty with PHP and with mySQL, too.
https://wordpress.org/support/topic/uploading-theme-7
There's a lot of work involved with creating a WordPress theme from scratch, however. You should consult the official WordPress documentation. https://codex.wordpress.org/

Wordpress admin interface takes forever to load [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
TLDR Version : Wordpress admin interface does not load
I have a WordPress blog, I have been using it for over 2 years.
Recently I have been experiencing this problem. Al pages login, add new post, dashboard i.e all admin interface pages take forever to load.
I tried debugging this problem, below is a network stat info from my firebug.
It seems that my wp-admin.min.css takes a lot time to load.
Also then I reliased may be this has something to do with the Wordpress Latest Update I had done. But I am not sure, how do i fix this ?
I have search a lot on this, but just couldn't find a solution for this.
It might not be your WordPress installation at all (but rather something about your own internet connection or machine setup). The login page loaded very quickly for me, and here you can see a complete analysis from Pingdom.
It took less than half a second to load. I would try a few of these things to narrow down on the problem:
Reboot
Try a different browser
Try a different computer
Try a different network / location

How to integrate blog software into an aspx page in asp.net website [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I was given a task to integrate a blog software to a sample.aspx page in asp.net website.
I didn't understand what does it mean.
If i install a blog software on my system then how can i integrate to an aspx page web
application.
I'm confused at this step.
Please anybody help.
Thanks
update
I installed BlogEngine.Net on my system, but when i browse it opens as a separate website. I don't want in this way.
What I want is there is a page sample.aspx in my asp.net application and a navigation link for this page on menu.So when click on this link , this page will open and blog software should run on this page.
Which blog software will be best suited for this condition?
I think the best option, if it's even an option at all, is to have the website and blog engine be separate urls, but use the same theme across both the site and the blog. this way, the user won't really be able to tell the difference other than the url changed. (and how many people really look at the url anymore?)
but trying to put the blog egine "in" the web site doesn't make much sense.

Service is down status [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
What is the best practice to inform users if the services is down? In my example it's an application upload function that may be over capacity.
Thanks.
Uli
There are many ways that this can be accomplished and it all depends on what best fits your particular application.
If all you are looking to do is disable a feature, like in your example of disabling the upload feature, you could put a prominent message at the top of that page that says that it is not currently available and then disable the upload button on that page.
If you plan to take down the whole site for maintenance, it's good to have it as a separate page that is not linked to the rest of your site in any way. That way you can modify anything within your site, and also make a lot of changes to your web server.
Have an error page that is pure HTML - that way if the database goes down, you are not showing an error page that is dependant on some kind of DB query. Otherwise, your error page, will error.
You could return an HTTP error code if it is a web/http upload endpoint.
In our company, we have a procedure that do something like that (on our apache server):
Stop a particoular service
Enter .htaccess and do a rewrite-url to a standard down page
When we came back:
Enter .htaccess and remove the rewrite-url
Restart services
This is done by a bash script called when we want to shut down some services.
You could do that with a demon that check if server is "overlogged" and starts that routine.

Resources