Search Results

Showing results 1 to 40 of 104
Search took 0.01 seconds.
Search: Posts Made By: Fungus1487 ; Forum: ASP.NET and child forums
Forum: ASP.NET Jun 1st, 2009
Replies: 5
Views: 727
Posted By Fungus1487
Are you saying that javascript is useful serverside? Or is it intended to be sarcastic, i hope so!

I agree with sedgey about the hosting but any dynamically data driven site; daniweb, msdn,...
Forum: ASP.NET Mar 22nd, 2009
Replies: 2
Views: 945
Posted By Fungus1487
im guessing you mean the built in treeview control? in short no although you could have a fiddle with the CSS that is generated in the background. I would warn against using it though as having tried...
Forum: ASP.NET Jan 19th, 2009
Replies: 7
Views: 1,783
Posted By Fungus1487
awesome. sorry geez x
Forum: ASP.NET Jan 18th, 2009
Replies: 7
Views: 1,783
Posted By Fungus1487
This is the ASP.net forum?


And the best way to achieve this is definately a recursive function. I dont quite understand your database structure could you ellaborate. A simple example of...
Forum: ASP.NET Jan 18th, 2009
Replies: 4
Views: 861
Posted By Fungus1487
Your looking for something like this http://freetextbox.com/download/ , although if you use it commercially you will have to pay them for the control. I have done this sort of thing by hand before...
Forum: ASP.NET Jan 9th, 2009
Replies: 8
Views: 590
Posted By Fungus1487
yer you have it right now.

purchasing the domain simply allows you to trap requests to that address and then forward them to anywhere you like.

once you have the domain and hosting which...
Forum: ASP.NET Jan 9th, 2009
Replies: 8
Views: 590
Posted By Fungus1487
Have you purchased Hosting or just the domain name?

If so you need to check if your host supports ASP.net else your projects will not work.

If they do they will provide a backend to setup a web...
Forum: ASP.NET Jan 9th, 2009
Replies: 2
Views: 404
Posted By Fungus1487
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 Jan 9th, 2009
Replies: 1
Views: 333
Posted By Fungus1487
hey although the way your writing this can be done, it will be hard to maintain with all your permutations in the if statement. I have put together an example for you that uses lists to iterate...
Forum: ASP.NET Jan 4th, 2009
Replies: 2
Views: 1,701
Posted By Fungus1487
first of all do they need to be added dynamically? could you get away with adding them manually first and hiding/showing certain controls. You can set the index of the step so you could technically...
Forum: ASP.NET Dec 24th, 2008
Replies: 10
Solved: Simple program
Views: 1,580
Posted By Fungus1487
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
Solved: Simple program
Views: 1,580
Posted By Fungus1487
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
Solved: Simple program
Views: 1,580
Posted By Fungus1487
what operating system and setup are you using ?
Forum: ASP.NET Dec 20th, 2008
Replies: 10
Solved: Simple program
Views: 1,580
Posted By Fungus1487
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
Solved: Simple program
Views: 1,580
Posted By Fungus1487
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 Dec 20th, 2008
Replies: 2
Views: 465
Posted By Fungus1487
if sessions are disabled at machine level whether or not you set them in web.config will not matter. contact your host and find out whether they support sessions and whether there is anything they...
Forum: ASP.NET Dec 13th, 2008
Replies: 1
Views: 408
Posted By Fungus1487
the bin file should be generated with your project. Are you using VS? or are you writing this by hand.

The logic you have is quite simple, the "Init" method is being called and creating a handle...
Forum: ASP.NET Dec 12th, 2008
Replies: 2
Views: 4,510
Posted By Fungus1487
given a file structure as follows...

DirectoryA
-- SubDirA
-- SubDirB
DirectoryB
-- SubDirA
-- SubDirA1
-- SubDirB
Forum: ASP.NET Nov 27th, 2008
Replies: 2
Views: 444
Posted By Fungus1487
yo havent implemented all of your interfaces methods so far as i can see in the class FocusView you have implemented Idecrypt and login.

your IEncrypt method in FocusView is not implementing the...
Forum: ASP.NET Sep 22nd, 2008
Replies: 2
Views: 2,296
Posted By Fungus1487
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: 835
Posted By Fungus1487
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 Sep 17th, 2008
Replies: 6
Views: 5,909
Posted By Fungus1487
You cant.

Not just using javascript.

With IE you can get your user to set there browser settings to low and it will let them do this but firefox or any other browser will not allow it as its a...
Forum: ASP.NET Jul 10th, 2008
Replies: 1
Views: 1,495
Posted By Fungus1487
dont use absolute layout. Ever!

this is probably gonna be the answer you will get everwhere but simply spending a day learning HTML/CSS coding practices will reap the rewards.
Forum: ASP.NET Jul 10th, 2008
Replies: 1
Views: 1,060
Posted By Fungus1487
I dont believe you can do this solely through .Net you would require either a flash interface or an active X control to use a webcam.
Forum: ASP.NET Jul 8th, 2008
Replies: 2
Solved: POST in ASP C#
Views: 1,940
Posted By Fungus1487
Name: <%= Page.Request("nameField") %> <br />
Age: <%= Page.Request("ageField") %> <br />
Comment: <%= Page.Request("commentField") %> <br />
Forum: ASP.NET Jun 24th, 2008
Replies: 5
Views: 4,722
Posted By Fungus1487
look into using the ModalPopupExtender from the ajaxtoolkit. It really is great and stops all the cross browser nonsense of manually coding javascript popups. ModalPopup Example...
Forum: ASP.NET Jun 8th, 2008
Replies: 2
Views: 1,718
Posted By Fungus1487
System.Web.UI.HtmlControls
Forum: ASP.NET Jun 8th, 2008
Replies: 3
Solved: ASPNETDB.mdf
Views: 7,495
Posted By Fungus1487
do you have permissions on this remote machine to create a database. you will need an account which has the nescessary permissions to auto generate a db.
Forum: ASP.NET Jun 8th, 2008
Replies: 3
Views: 946
Posted By Fungus1487
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 Jun 2nd, 2008
Replies: 6
Views: 991
Posted By Fungus1487
Yer it actually is running brilliantly.

Thanks for all your help.

It just a shame that it requires a mixture of all the above methods to get something that works across all major windows OS...
Forum: ASP.NET Jun 1st, 2008
Replies: 6
Views: 991
Posted By Fungus1487
Ok after a couple of hours looking into this problem i have come up with a solution which works just about everywhere i have tested it. I have stripped it to its bare bones and im sorry about the...
Forum: ASP.NET May 29th, 2008
Replies: 6
Views: 991
Posted By Fungus1487
Hey there majestic0110. Thanks for the reply. I have taken a good look through the article to no avail. I dont think it quite hits home on the concept i am trying to get working. After alot of...
Forum: ASP.NET May 29th, 2008
Replies: 6
Views: 991
Posted By Fungus1487
Basically i have a wizard so a user can setup the web app correctly when installed.

This requires them to enter details on a server which houses their database.

I would like to return a list of...
Forum: ASP.NET May 8th, 2008
Replies: 1
Views: 604
Posted By Fungus1487
Why do you need the excel document if you are simply adding all this data to the database?

Do all your calculations in your code behind. it will be faster.
Forum: ASP.NET May 6th, 2008
Replies: 5
Views: 34,054
Posted By Fungus1487
The method you are using is depreciated and you should create your controls dynamically using the built in methods.

E.g.

HtmlInputCheckBox cb = new HtmlInputCheckBox();
cb.id = "someid";...
Forum: ASP.NET Apr 27th, 2008
Replies: 2
Views: 1,899
Posted By Fungus1487
because you are dynamically creating buttons they are not retaining state on postback and therefore wont fire the event assigned to them. You need to re-instantiate each dynamic control individually....
Forum: ASP.NET Apr 22nd, 2008
Replies: 6
Views: 7,351
Posted By Fungus1487
do you have access to a database on your server?
do you have access to a web server which provides asp.net services?

you need to know this before continuing.
Forum: ASP.NET Apr 22nd, 2008
Replies: 11
Views: 1,156
Posted By Fungus1487
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,156
Posted By Fungus1487
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,156
Posted By Fungus1487
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...
Showing results 1 to 40 of 104

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC