- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
geek
These few lines will allow you to email as html an aspx page from your site or in fact any web page you want (though i wouldnt recommend any with lots of scripts etc in it). It is very useful for email forms to customers etc from your site. Personally … | |
Re: There is one way to send for free without using an sms gateway but you have to know the carrier the person is on. You can then send an email. Most are in the form of [email]mobilenumber@carrierssmsemail.tld[/email] For example verizon is [email]mobilenumber@vtext.com[/email] and most major carriers have similar. | |
Re: I havent had time to go over this in detail, just a quick scan, but you didnt need to copy the code from streamreader did you? You could have implemented a shadow readline and added your own code, or you could overload readline with a parameter and have your code … | |
Re: use System.Management classes to do it. Writing WMI queries. Have a look at it and if you are stuck let me know and i will give you some code. | |
Re: you can set the focus method for the tab control. But i suggest that the page is reloading or setting focus to the first tab everytime in code or you are rebinding it each postback? Try the if (isPostback) to set the control or not as the case may be | |
Re: The best way then is to go to a host that offers everything and copy your website there. Add the extras for the comments form and then on the old site get them to do url redirecting to the new site. This means anyone typing the old address will be … | |
Re: They do it in order of html appearance. There is a short help in adsense about multi unit ads and the best placement of them etc. And yes they still drop them if they cant fill the second and third | |
Re: what messagebox? This is asp.net ... web pages.. what messagebox? message box is in windows forms projects not web pages. Do you want to pop up a message to a user? you can use the javascript alert. Are you sure you understand the concept of asp.net? If not say so … | |
Re: Thats not good programming and performance! NEVER use try catch as validation! IT is huge performance overhead. What is wrong with DateTime.TryParse???? | |
Re: without going into too much argument over html vs asp.net controls etc (and I also use asp.net controls sparingly) I think you all missed the point of the original question :) haha I took it as he wanted to know how to open a new window not the button click … | |
Re: make it a static function in a class (say Utilities) then in your click event in code behind just call Utilities.RandomPW(7). But you need to return the password you generated. [quote] I have created a random password generator function in asp.net (vb.net)[/quote] No you copied it without understanding it again. … | |
Re: the request object has all the information you need about the client. The only problem you would have with ip addresses is if you are behind ISA2000 (not the 2004) or they are behind some proxy. How will it make your site secure? Are you going to log all ips … | |
Re: Can i ask why? Is the new program an enhancement of the old? Or is the new program using some features of the old? Either way i would make the old program a class library and then it (or parts of it) can be used by many other programs. Dont … | |
Re: c# code [code] using System.Data; //in some function System.Data.Odbc.OdbcConnection conn; DataTable dt; System.Data.Odbc.OdbcDataAdapter da; string connectionString; string importFolder; string fileName; importFolder = @"c:\importfile" //or pass it in -this is the folder in which the csv file is in fileName = "csvimport.csv" //or pass it in -this is the csv file … | |
Re: string theString = "hello"; char[] theStringAsArray = s.ToCharArray(); | |
Re: Just one quick one on stored procedure names... dont prefix a stored procedure with sp_ use anything but this as when you call a stored procedure SQL Server looks at the name and if it starts with sp_ it will go to the master database first, do a search for … | |
Re: Sorry, i am not doing your work for you. But yes it is possible. Depends if you are talking to exchange or not on how you go about it. You can use the office tools for visual studio (especially the 2005 edition) and also can use CDO objects to talk … | |
Re: the timer is doing its function i bet. But test is reset on each postback so will always be 1. for everyone to have the same function you should put test in the application cache (or store is somewhere outside of the session - maybe a db or file). | |
Re: where are you typing the url? on the win2k3 machine? also have you checked that it is running as an asp.net app? Does it have an application pool on the IIS page? have you allowed asp.net to run under iis on the win2k3 machine? Are there any other asp.net apps … | |
Re: The easiest way is to write a query to select the data from all 3 tables and put them into a dataset with relationships. Then you just have to iterate through the first table one row at a time and create a node for it. Then run through that rows … | |
Re: if it is in a table you have to have td .tablecellhyperlinks in your css file. | |
Re: [code] string culture = ddl_English.SelectedValue.ToString(); [/code] any .net control on a form is accessed directly in code behind so you can get to any of your control's properties. | |
Re: it could be a firewall issue. if they are on the same network you might be closed down on your machine on port 80 if you are running windows firewall or someother on the machine. Most likely it is because they cannot find your machine name. you say you can … | |
Re: there is a way of doing this. I use it extensively for tracking as you mentioned. You need to use an http module. Change your image url in the webpage to [url]http://site.com/notanimage.jpg[/url] then in your http module you check for the name, do whatever logging you need and then replace … | |
Re: [quote]I am devloping Image Comparison Application in ASP.net which compares images irrespective of it's format,size and gives result in Percentage Format!![/quote] [quote]I want to know whether it's possible to comapre 2 images using asp.net irrespective of their format,size and result should be in percenatge format like 80%-90% like that...And the … | |
Re: Michelle I am not in a position to help you as yet sorry but wanted to point out a mistake on your website. At the bottom of the homepage it says last updated at midnight Jan 1st 1970. Which makes all those models on your site about 60 now :-s … | |
Re: sms is complex and not free but can be done. There are gateways which you can setup with your provider. There is a way to do it via email and is usually [email]mobilenumber@carrierssmsmail.tld[/email] i know them for usa but not for uk. I would think vodafone would be [email]mobilenumber@vodafone.net.uk[/email] but … | |
Re: you need wizCreateBulk.FindControl("txtName") the wizard control is the parent control not the templates... | |
Re: Most chat clients dont write from the bottom up. They write from the top down but when it is full they start to scroll. Is this a web or windows forms app? | |
Re: To use a remote SQL Server you need to add the settings to your web config. At the top you need to add the connection string [code] <connectionStrings> <add name="MyConnectionString" providerName="System.Data.SqlClient" connectionString="Data Source=[I]servername[/I];Initial Catalog=[I]database[/I];UID=[I]username[/I];pwd=[I]password[/I]"/> </connectionStrings> [/code] Then you need to change authentication mode to forms and add the providers. [code] … |