The asp tag has no wiki summary.
0
votes
0answers
75 views
Syntax highlighting text editor for Mac that supports c# & asp [closed]
I primarily program on a macbook air. Occasionally I need to do some quick editing of sites built on .net. However these are usually not too complicated and I would like to avoid using virtualization ...
-8
votes
1answer
82 views
Does ASP.NET MVC, or any other modern web development framework provide ONE single web development environment? [closed]
I keep searching for this online with no answer. I understand that web development you worry about the front end (HTML, CSS, javascript) and the backend (PHP, JSP, ASP.NET, etc). All of these use ...
-3
votes
1answer
458 views
quick approach to migrate classic asp project to asp.net [duplicate]
Recently we got a requirement for converting a classic asp project to asp.net.
This one is really a very old project created around 2002/2003. It consists of around 50 asp pages. I found very little ...
1
vote
2answers
98 views
A little code to allow word substitution depending on user
I'm creating a demo web app in html in order for people to physically see and comment on the app prior to committing to a proper build.
Whilst the proper app will be database driven, my demo is just ...
3
votes
3answers
1k views
Best practices: Ajax and server side scripting with stored procedures
I need to rebuild an old huge website and probably to port everyting to ASP.NET and jQuery and I would like to ask for some suggestion and tips. Actually the website uses:
Ajax (client site with ...
1
vote
1answer
668 views
Print three copy of asp.net page two copy with diffrent color [closed]
I have an ASP.Net page. I want to print that page 3 times, 2 copies should carry "COPY WORD, as a watermark".
I have written this code code to print three copies, but it's asking confirmation about ...
3
votes
2answers
416 views
Http handler for classic ASP application for introducing a layer between client and server
I've a huge classic ASP application where in thousands of users manage their company/business data. Currently this is not multi-user so that application users can create users and authorize them to ...
0
votes
2answers
133 views
Web application to a multiplatform phone app
I'm really lost here so I hope some can help me.
I have to develop a phone application on every platform so i tough of using phonegap. Seems pretty nice.
I have a web application coded in classic ...
2
votes
4answers
492 views
Should I achieve validation by handling errors in classic ASP?
I came across this while modifying an old ASP application:
ON ERROR RESUME NEXT
ivalue = CDATE(ivalue)
IF err.number > 0 THEN
ivalue = CDATE(date)
END IF
err.clear
This doesn't look like ...