Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
83% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
0 Endorsements
Ranked #977
~69.1K People Reached
About Me

geek

Favorite Tags
Member Avatar for f1 fan

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 …

Member Avatar for anandraju123
0
6K
Member Avatar for ruisi

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.

Member Avatar for Mr.M
0
7K
Member Avatar for tgreer

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 …

Member Avatar for Cesc_1
0
9K
Member Avatar for Bill the Cat

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.

Member Avatar for ad48
0
4K
Member Avatar for ramareddy_dotne

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

Member Avatar for umesh1987
0
177
Member Avatar for rpk5000

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 …

Member Avatar for Vusumuzi
0
176
Member Avatar for Dani

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

Member Avatar for peterson5052
0
347
Member Avatar for muthu

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 …

Member Avatar for plusplus
0
265
Member Avatar for frmsasp

Thats not good programming and performance! NEVER use try catch as validation! IT is huge performance overhead. What is wrong with DateTime.TryParse????

Member Avatar for amitesh kaushik
0
4K
Member Avatar for steven

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 …

Member Avatar for dbeura
0
779
Member Avatar for Naters_uk

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

Member Avatar for kvprajapati
0
258
Member Avatar for Naters_uk

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 …

Member Avatar for mfaisalhayat
0
170
Member Avatar for MoriEdan

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 …

Member Avatar for kvprajapati
0
256
Member Avatar for sseo

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 …

Member Avatar for kvprajapati
0
957
Member Avatar for neelu421
Member Avatar for Geekitygeek
1
693
Member Avatar for Paladine

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 …

Member Avatar for kvprajapati
0
2K
Member Avatar for the_shark

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 …

Member Avatar for inspirekarthick
0
350
Member Avatar for thebookie

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).

Member Avatar for herrturtur
0
2K
Member Avatar for mikefitz

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 …

Member Avatar for f1 fan
0
204
Member Avatar for rinkuchoudhury

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 …

Member Avatar for bassam572009
0
303
Member Avatar for jamello
Member Avatar for mIssy_ricco
0
431
Member Avatar for web_developer

[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.

Member Avatar for tarim
0
88
Member Avatar for mustafabrew

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 …

Member Avatar for rezax123
0
357
Member Avatar for plazmo

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 …

Member Avatar for sedgey
0
166
Member Avatar for HrishiR

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

Member Avatar for Aneesh_Argent
0
1K
Member Avatar for ep2002

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 …

Member Avatar for Energy Recruitm
0
231
Member Avatar for Naters_uk

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 …

Member Avatar for jalpaeol
0
453
Member Avatar for red_evolve

you need wizCreateBulk.FindControl("txtName") the wizard control is the parent control not the templates...

Member Avatar for binusworld
0
379
Member Avatar for plazmo

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?

Member Avatar for SupportCuteSoft
0
924
Member Avatar for someoneelse

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

Member Avatar for jayakumarjesus
0
264