Hi guys, Some of my Questions regarding ascx page in asp.net web application:- - How we can convert read only ascx/aspx page to write mode? :confused: And if we can convert it in write mode than again how we can reconvert in read only mode?:confused: - In asp.net web application, Is it necessary to make ascx page always read only?:confused: And why we can make the ascx page read only in asp.net web application?:confused: Kunal Naik
kunal naik
Posts
-
ascx page in asp.net web application -
Invalid attempt to call Read when reader is closed.While try to execute this code i get an error message " Invalid attempt to call Read when reader is closed." Public Shared Function GetLMSSettings() As Hashtable Dim h As Hashtable h = CType(DataCache.GetCache("GetLMSSettings"), Hashtable) If h Is Nothing Then h = New Hashtable Dim dr As IDataReader = SqlDataProvider.GetLMSSettings While dr.Read() If Not dr.IsDBNull(1) Then h.Add(dr.GetString(0), dr.GetString(1)) Else h.Add(dr.GetString(0), "") End If End While dr.Close() DataCache.SetCache("GetLMSSettings", h) End If Return h End Function
-
SMS is not deliverHello, i am using the article "Sending SMS using .NET through Web service By Manoj Kumar C" for sending sms through web ser. but when this application will run the output show the sms will send successfuly but the msg will not deliver in the mobile and also not getting an e-mail. so anybody tell me what i have done to deliver the message sucessfuly.