- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
13 Posted Topics
Re: Use this in your event handler for clicking an upload button. [CODE] if (FileUpLoad1.HasFile) { String fileName = "yourfilename"; FileUpload1.PostedFile.SaveAs(Server.MapPath("yourpath/") + fileName); } [/CODE] | |
Re: Most basic way would be to give them your external IP address and forward port 80 (http) to your webserver. Open firewall for port 80 for their IP addresses only and give them a URL like <your ip>/somewebpage.aspx. Unless you register a domain name for your external IP. | |
Re: Set the checkboxlist to postback to an event handler when the selectedindex changes and update some store or DB table. Example use here -> [url]http://asp-net-example.blogspot.com/2009/03/how-to-use-autopostback-feature-in.html[/url] | |
Re: All you are storing in the DB is the string. It will only have newlines in the DB column if you insert newline characters (vbCrLf, vbNewLine are used in Access). So if you hit return in the textbox to create a new line I think you will see '/n'. Find … | |
Re: Querystring is always useful if you want the user to be able to return to such a page directly, or bookmark it. The only other consideration is security - remember that querystrings can be modified by the user. There are a whole bunch of ways to pass values, see here: … | |
Re: Put them in a <div> or <span> and set the class or in line style? [CODE]<div style="font-weight: bold"> text </div>[/CODE] and use the same method to get the indent [CODE]<div style="text-indent:10px"> text </div>[/CODE] or use padding. | |
Re: Can you just use 'ORDER BY <column> DESC' in your query? [url]http://www.tizag.com/sqlTutorial/sqlorderby.php[/url] | |
Hi all, I have a single table with both parent and child nodes, and each has an order number in it. I am trying to write a single query to output them in order, its for a navigation list with categories and sub-categories. I could manage it in code rather … | |
Re: Websites are great to help as you progress but I don't think you can beat a good book which you can have sit next to you and start with some of the basic exercises. Also when you have a bit of downtime just reading through some parts can be really … | |
Re: You never opened the connection (objConnection) Glad you fixed it it anyway ;) | |
Re: Code looks ok, is the checkboxlist inside another control - i.e. a gridview or detailsview or something? | |
Re: I don't have the answer but can maybe help to point you in the right direction. What you are looking for is a lossless image compression (so that no quality at all is lost). I don't think it would be possible to ahceive the reduction in file size you are … | |
Re: Can you post you code with the button and the event handler function? Are you sure you don't have an infinite loop somewhere - this can bring down your local server which will then show you a 'page cannot be reached' error. |
The End.