No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Would you like to extract user information from databases and then send that user information over the email ?
i would suggest you to read some ebook on asp.net 4.
you can also do with C# code for clearing cache. [code] string cacheKey; IDictionaryEnumerator CacheEnum = HttpContext.Current.Cache.GetEnumerator(); while (CacheEnum.MoveNext()) { cacheKey = CacheEnum.Key.ToString(); HttpContext.Current.Cache.Remove(cacheKey ); } [/code]
Hi , As per my knowledge you need to add [ScriptService] tag before defining a Web method in service project . [code] [ScriptService] public class MyService : System.Web.Services.WebService { [WebMethod] public string GetAge(int year, int month, int day) { DateTime birthDate = new DateTime(year, month, day); long age = new …
[QUOTE=ericstenson;493343]dim string1 as string string1 = gridview1.rows(row#).cells(cell#).tostring now, here is the kicker. the first row is row "0" the first column/cell is "0" it goes against intuition of using 1... if you still need help estenson1 at gmail best, eric[/QUOTE] ********************************************** Thanks a lot , it worked in my case.
The End.
cynix008