Forum: ASP.NET Jan 9th, 2009 |
| Replies: 2 Views: 390 Im just curious as to when you would do this on a web page ?
What your looking to do is
Response.Redirect = "http://www.google.com/";
having not used visual web developer i am unsure how... |
Forum: ASP.NET Dec 24th, 2008 |
| Replies: 10 Views: 1,498 The days of IIS 5.1, beautiful. Im guessing here but have you looked under all tasks sub context menu ? Not having XP or IIS 5.1 anymore (Since 2006) i really cannot remember exactly where this is... |
Forum: ASP.NET Dec 22nd, 2008 |
| Replies: 10 Views: 1,498 other than majestics reason i cant think of any why you cannot gain access to administrative tools |
Forum: ASP.NET Dec 21st, 2008 |
| Replies: 10 Views: 1,498 what operating system and setup are you using ? |
Forum: ASP.NET Dec 20th, 2008 |
| Replies: 10 Views: 1,498 further to this im sorry i didnt answer your question.
If you did build this site in visual studio or an IDE then using the RUN command will run your website. I understand if you wish to set this... |
Forum: ASP.NET Dec 20th, 2008 |
| Replies: 10 Views: 1,498 i have to disagree here, why is it bad to hand code aspx pages? just wondering as there are many programmers/developers that program in the most basic of all programs "notepad" for HTML, CSS,... |
Forum: ASP.NET Sep 22nd, 2008 |
| Replies: 2 Views: 2,221 Try
onclick="window.open('popup.aspx?textbox=txtDate','cal','width=250,height=225,left=270,top=180');return false;"
href="javascript:void(0);"
And if that fails you could always try
... |
Forum: ASP.NET Sep 18th, 2008 |
| Replies: 2 Views: 827 this will only work in IE at best.
If thats not a problem then we need to see your "B.aspx" page to see what is going wrong.
If cross browser issue is a problem try looking into the... |
Forum: ASP.NET Jul 8th, 2008 |
| Replies: 2 Views: 1,842 Name: <%= Page.Request("nameField") %> <br />
Age: <%= Page.Request("ageField") %> <br />
Comment: <%= Page.Request("commentField") %> <br /> |
Forum: ASP.NET Jun 8th, 2008 |
| Replies: 3 Views: 907 You need to force the browser to refresh it looks like. Im afraid the easiest method is to change its name. maybe you could add a time to the end of the file i.e. "filename_20080607.jpg" etc. |
Forum: ASP.NET Apr 22nd, 2008 |
| Replies: 11 Views: 1,146 aspose are usually the best ones i see on the net for any third part tool.
just contact them. tell them what you require and they can say yes or no to whether the solution they offer will fill in... |
Forum: ASP.NET Apr 22nd, 2008 |
| Replies: 11 Views: 1,146 This is a case of using a safe (ish) third party tool (which after having looked havent found any decent free ones) or being very careful over how you implement it.
Seeing as you did not want to... |
Forum: ASP.NET Apr 21st, 2008 |
| Replies: 11 Views: 1,146 Hey Hey.
i managed to get this working. It just simply changes the text inside a bookmark in a word document.
<%@ Page Language="VB" Strict="true" %>
<%@ Import... |
Forum: ASP.NET Apr 21st, 2008 |
| Replies: 11 Views: 1,146 i have just looked into this a bit more and have found out you can use the com librarys to manipulate your powerpoint presentation.
i found this word example but havent tried it good luck... |
Forum: ASP.NET Apr 21st, 2008 |
| Replies: 11 Views: 1,146 i dont see any other way of doing this then than the original open XML approach. Be warned to do something like this will take 100's - 1000's of lines of XML |
Forum: ASP.NET Apr 21st, 2008 |
| Replies: 11 Views: 1,146 couldnt you use VBA in the ppt itself. You can use tcp/ip connections thru VBA. it may be along winded approach but without using a third party tool you may be solving this nightmare for a very long... |
Forum: ASP.NET Apr 16th, 2008 |
| Replies: 11 Views: 1,320 I agree i would also almost always choose .NET simply for the complete lazyness that visual studio offers me as a developer. |
Forum: ASP.NET Apr 15th, 2008 |
| Replies: 11 Views: 1,320 but if you have to use mysql then go the php route as it is integrated alot better into the php language. |
Forum: ASP.NET Apr 8th, 2008 |
| Replies: 2 Views: 891 do you have flash installed for internet explorer as firefox uses a seperate plugin to IE. Also use firefox. It is a faster browser! |
Forum: ASP.NET Jan 17th, 2008 |
| Replies: 8 Views: 1,700 what was the issue? may help others if they ever get stuck with similiar problem |
Forum: ASP.NET Jan 15th, 2008 |
| Replies: 8 Views: 1,700 can you put some error listing up here ? |
Forum: ASP.NET Jan 5th, 2008 |
| Replies: 6 Views: 7,553 how are you displaying these items ? |
Forum: ASP.NET Jan 3rd, 2008 |
| Replies: 6 Views: 7,553 i dont know why you would need a dll but anyway.
you will need to do 3 things
1. basic page with your textbox in. Then use the following javascript to pass a query to the server along with your... |
Forum: ASP.NET Dec 10th, 2007 |
| Replies: 13 Views: 5,384 after re-reading you say you want them to download THE files.
the only way to do a batch download is either open a window for each file, create a zip file on the fly with all files inside, or have... |
Forum: ASP.NET Dec 10th, 2007 |
| Replies: 13 Views: 5,384 well theres no file your just referencing the directory "Docs/##/EP/" ? try passing a filename through ?
also 'file.Length.ToString());' will not return the files size as its just a string... |
Forum: ASP.NET Dec 10th, 2007 |
| Replies: 13 Views: 5,384 set your permissions to allow access to my documents.
saying that i remember not being allowed access to a servers My Documents folder even with permissions set.
use another file location i.e.... |
Forum: ASP.NET Nov 15th, 2007 |
| Replies: 5 Views: 22,765 ok then just simply add an onchange event to your FILE input.
<form name="form1"/>
<input type="file" name="filediag" style="display:none"
onchange="window.open(this.value,... |
Forum: ASP.NET Nov 14th, 2007 |
| Replies: 5 Views: 22,765 you cant hide the textbox but if you set the display style property of the FORM element to 'none' and create another element of type button then using javascript you can open the dialog onClick of... |
Forum: ASP.NET Nov 6th, 2007 |
| Replies: 9 Views: 3,873 there seems to be alot of processing on the server to simly just change these pages why not use CSS css tabs (http://www.cssdrive.com/index.php/examples/exampleitem/css_horizontal_tabs/) with iframes... |
Forum: ASP.NET Nov 3rd, 2007 |
| Replies: 9 Views: 3,873 i dont know of any third party tabs but when i need tabs i use iframes. with a form for each page you want in each then use javascript to change the page. |
Forum: ASP.NET Oct 22nd, 2007 |
| Replies: 4 Views: 1,550 goto the 'CODEBEHIND' in your global.asax file located at the root. then there are events in their to handle all these occurances.
i.e. session start / end, application start / end even an event... |
Forum: ASP.NET Jul 9th, 2007 |
| Replies: 15 Views: 6,220 there are some free components available that allow you to view excel documents in asp.net i cant think for the love of god where i saw them tho. best to GOOGLE it. Another alternative is to use... |