Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #3K
~5K People Reached
Favorite Forums
Favorite Tags

13 Posted Topics

Member Avatar for love_dude1984

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]

Member Avatar for Dhanya_1
0
2K
Member Avatar for bg1976

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.

Member Avatar for shibbard
0
69
Member Avatar for RAMAN2233

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]

Member Avatar for shibbard
0
75
Member Avatar for algo_man

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 …

Member Avatar for djzia
0
95
Member Avatar for anup.maverick

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: …

Member Avatar for reach_yousuf
0
102
Member Avatar for Ana D.

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.

Member Avatar for Sals
0
2K
Member Avatar for love_dude1984

Can you just use 'ORDER BY <column> DESC' in your query? [url]http://www.tizag.com/sqlTutorial/sqlorderby.php[/url]

Member Avatar for love_dude1984
0
118
Member Avatar for shibbard

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 …

Member Avatar for shibbard
0
120
Member Avatar for get2tk

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 …

Member Avatar for jbennet
0
159
Member Avatar for 15389049
Member Avatar for shibbard
0
127
Member Avatar for alexymasilamani

Code looks ok, is the checkboxlist inside another control - i.e. a gridview or detailsview or something?

Member Avatar for shibbard
-1
81
Member Avatar for thirumca

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 …

Member Avatar for thirumca
0
108
Member Avatar for vuyiswamb

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.

Member Avatar for shibbard
0
63

The End.