User IrfanRaza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:48:26Z http://stackoverflow.com/feeds/user/123514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1926779/programmatically-adding-validation-control-to-asp-net-page 1 Programmatically adding validation control to asp.net page IrfanRaza 2009-12-18T07:07:57Z 2009-12-18T07:32:48Z <p>Hello friends,</p> <p>I am trying to add a required fields validator programmatically in asp.net. But I get the following error message - Control 'req2' of type 'RequiredFieldValidator' must be placed inside a form tag with runat=server</p> <p>The c# code i have used is below - </p> <pre><code>protected void Page_Load(object sender, EventArgs e) { RequiredFieldValidator rv = new RequiredFieldValidator(); rv.ID = "req2"; rv.ControlToValidate = "TextBox2"; rv.ErrorMessage = "Data Required"; this.Controls.Add(rv); } </code></pre> <p>Could someone tell me whats gone wrong here?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1873122/validation-controls-not-applicable-to-web-custom-controls-in-asp-net 0 Validation controls not applicable to web custom controls in asp.net IrfanRaza 2009-12-09T10:59:05Z 2009-12-14T02:12:52Z <p>I have created a web custom control and used within an aspx page. I found the validation controls provided by asp.net are applicable to the built in server controls. I am not able to attach these validation controls with my custom control.</p> <p>For ex. If i am using TextBox control then the RequiredFieldValidator is applicable to it. but when i try to apply the same RequiredFieldValidator to my custom control it is not possible. The property "ControlToValidate" does not show the object id of my custom control. </p> <p>Could someone help me to rectify this problem?</p> <p>Thanks for sharing your valuable time.</p> <p><hr></p> <p>Below is the code from .cs file -</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Security.Permissions; [assembly: TagPrefix("DatePicker", "SQ")] namespace DatePicker { [DefaultProperty("Text")] [ToolboxData("&lt;{0}:DatePicker runat=server&gt;&lt;/{0}:DatePicker&gt;")] public class DatePicker : CompositeControl { //To retrieve value i am using textbox private TextBox _TxtDate = new TextBox(); // Image to select the calender date private Image _ImgDate = new Image(); // Image URL to expose the image URL Property private string _ImageUrl; // Exposing autopostback property private bool _AutoPostBack; // property get the value from datepicker. private string _Value; //CSS class to design the Image private string _ImageCssClass; //CSS class to design the TextBox private string _TextBoxCssClass; //to formate the date private string _DateFormat = "%m/%d/%Y"; //to hold javascript on client side static Literal _litJScript=new Literal(); private bool _includeJS = false; /**** properties***/ #region "[ Properties ]" [Bindable(true), Category("Appearance"), DefaultValue("")] public string ImageUrl { set { this._ImageUrl = value; } } [Bindable(true), Category("Appearance"), DefaultValue(""), Localizable(true)] public string Text { get { //String s = (String)ViewState["Text"]; //return ((s == null) ? string.Empty : s); return _Value = _TxtDate.Text; } set { ViewState["Text"] = value; _TxtDate.Text = value; _TxtDate.BackColor = System.Drawing.Color.White; } } [Bindable(true), Category("Appearance"), DefaultValue(""), Localizable(true)] public string Value { get { return _Value= _TxtDate.Text; } set { _Value = _TxtDate.Text = value; ViewState["Text"] = _Value; _TxtDate.BackColor = System.Drawing.Color.White; } } [Bindable(true), Category("Appearance"), DefaultValue(""), Localizable(true)] public bool AutoPostBack { get { return _AutoPostBack; } set { _AutoPostBack = value; } } [Bindable(true), Category("Appearance"), DefaultValue(""), Localizable(true)] public string ImageCssClass { get { return _ImageCssClass; } set { _ImageCssClass = value; } } [Bindable(true), Category("Appearance"), DefaultValue(""), Localizable(true)] public string TextBoxCssClass { get { return _TextBoxCssClass; } set { _TextBoxCssClass = value; } } [Bindable(true), Category("Custom"), DefaultValue(""), Localizable(true)] public string CommandName { get { string s = ViewState["CommandName"] as string; return s == null ? String.Empty : s; } set { ViewState["CommandName"] = value; } } [Bindable(true), Category("Custom"), DefaultValue(""), Localizable(true)] public string CommandArgument { get { string s = ViewState["CommandArgument"] as string; return s == null ? String.Empty : s; } set { ViewState["CommandArgument"] = value; } } [Bindable(true), Category("Custom"), DefaultValue(""), Localizable(true)] public string DateFormat { get { return _DateFormat; } set { _DateFormat = value; } } [Bindable(true), Category("Behavior"), DefaultValue("True")] public bool IncludeClientSideJS { get { return _includeJS; } set { _includeJS = value; } } [Bindable(true), Category("Behavior"), DefaultValue("True")] public override bool Enabled { get { return _TxtDate.Enabled; } set { _TxtDate.Enabled = value; _ImgDate.Visible = value; } } [Bindable(true), Category("Layout")] public override Unit Width { get { return base.Width; } set { base.Width = value; _TxtDate.Width = value; } } #endregion protected static readonly object EventCommandObj = new object(); public event CommandEventHandler Command { add { Events.AddHandler(EventCommandObj, value); } remove { Events.RemoveHandler(EventCommandObj, value); } } //this will raise the bubble event protected virtual void OnCommand(CommandEventArgs commandEventArgs) { CommandEventHandler eventHandler = (CommandEventHandler)Events[EventCommandObj]; if (eventHandler != null) { eventHandler(this, commandEventArgs); } base.RaiseBubbleEvent(this, commandEventArgs); } //this will be initialized to OnTextChanged event on the normal textbox private void OnTextChanged(object sender, EventArgs e) { if (this.AutoPostBack) { //pass the event arguments to the OnCommand event to bubble up CommandEventArgs args = new CommandEventArgs(this.CommandName, this.CommandArgument); OnCommand(args); } } protected override void OnInit(EventArgs e) { base.OnInit(e); AddStyleSheet(); AddJavaScript("DatePicker.Resources.prototype.js"); AddJavaScript("DatePicker.Resources.calendarview.js"); // For TextBox // setting name for textbox. using t just to concat with this.ID for unqiueName _TxtDate.ID = this.ID + "t"; // setting postback _TxtDate.AutoPostBack = this.AutoPostBack; // giving the textbox default value for date _TxtDate.Text = this.Value; //Initializing the TextChanged with our custom event to raise bubble event _TxtDate.TextChanged += new System.EventHandler(this.OnTextChanged); //Set max length _TxtDate.MaxLength = 10; //Setting textbox to readonly to make sure user dont play with the textbox //_TxtDate.Attributes.Add("readonly", "readonly"); // adding stylesheet _TxtDate.Attributes.Add("class", this.TextBoxCssClass); _TxtDate.Attributes.Add("onkeypress", "maskDate(event)"); _TxtDate.Attributes.Add("onfocusout","isValidDate(event)"); // For Image // setting alternative name for image _ImgDate.AlternateText = "imageURL"; if (!string.IsNullOrEmpty(_ImageUrl)) _ImgDate.ImageUrl = _ImageUrl; else { _ImgDate.ImageUrl = Page.ClientScript.GetWebResourceUrl(this.GetType(), "DatePicker.Resources.CalendarIcon.gif"); } //setting name for image _ImgDate.ID = this.ID + "i"; //setting image class for textbox _ImgDate.Attributes.Add("class", this.ImageCssClass); //Initialize JS with literal string s = "&lt;script language=\"javascript\"&gt;function maskDate(e){var evt=window.event || e;var srcEle = evt.srcElement?e.srcElement:e.target;"; s = s + "var myT=document.getElementById(srcEle.id);var KeyID = evt.keyCode;"; s = s + "if((KeyID&gt;=48 &amp;&amp; KeyID&lt;=57) || KeyID==8){if(KeyID==8)return;if(myT.value.length==2){"; s = s + "myT.value=myT.value+\"/\";}if(myT.value.length==5){myT.value=myT.value+\"/\";}}"; s = s + "else{window.event.keyCode=0;}}"; string s1 = "function isValidDate(e){var validDate=true;var evt=window.event || e;var srcEle = evt.srcElement?e.srcElement:e.target;"; s1 = s1 + "var myT=document.getElementById(srcEle.id);var mm=myT.value.substring(0,2);var dd=myT.value.substring(5,3);var yy=myT.value.substring(6);"; s1 = s1 + "var originalCss =myT.className; if(mm!=0 &amp;&amp; mm&gt;12){myT.value=\"\"; validDate=false;}else{if((yy % 4 == 0 &amp;&amp; yy % 100 != 0) || yy % 400 == 0){if(mm==2 &amp;&amp; dd&gt;29){"; s1 = s1 + "myT.value=\"\"; validDate=false;}}else{if(mm==2 &amp;&amp; dd&gt;28){myT.value=\"\"; validDate=false;}else{if(dd!=0 &amp;&amp; dd&gt;31){"; s1 = s1 + "myT.value=\"\"; validDate=false;}else{if((mm==4 || mm==6 || mm==9 || mm==11) &amp;&amp; (dd!=0 &amp;&amp; dd&gt;30)){myT.value=\"\"; validDate=false;}}}}}"; s1 = s1 + "if(!validDate){myT.style.backgroundColor='#FD9593';myT.focus;}else { myT.style.backgroundColor='#FFFFFF';}}&lt;/script&gt;"; _litJScript.Text = s+s1; } /// &lt;summary&gt; /// adding child controls to composite control /// &lt;/summary&gt; protected override void CreateChildControls() { this.Controls.Add(_TxtDate); this.Controls.Add(_ImgDate); if(_includeJS) this.Controls.Add(_litJScript); base.CreateChildControls(); } public override void RenderControl(HtmlTextWriter writer) { //render textbox and image _TxtDate.RenderControl(writer); _ImgDate.RenderControl(writer); if(_includeJS) _litJScript.RenderControl(writer); RenderContents(writer); } /// &lt;summary&gt; /// Adding the javascript to render the content /// &lt;/summary&gt; /// &lt;param name="output"&gt;&lt;/param&gt; protected override void RenderContents(HtmlTextWriter output) { StringBuilder calnder = new StringBuilder(); //adding javascript first if (Enabled) { calnder.AppendFormat(@"&lt;script type='text/javascript'&gt; document.observe('dom:loaded', function() {{ Calendar.setup({{ dateField: '{0}', triggerElement: '{1}', dateFormat: '{2}' }}) }}); ", _TxtDate.ClientID, _ImgDate.ClientID, _DateFormat); calnder.Append("&lt;/script&gt;"); } else { calnder.AppendFormat(@"&lt;script type='text/javascript'&gt; document.observe('dom:loaded', function() {{ Calendar.setup({{ dateField: '{0}', triggerElement: '{1}', dateFormat: '{2}' }}) }}); ", _TxtDate.ClientID, null, _DateFormat); calnder.Append("&lt;/script&gt;"); } output.Write(calnder.ToString()); } private void AddStyleSheet() { string includeTemplate = "&lt;link rel='stylesheet' text='text/css' href='{0}' /&gt;"; string includeLocation = Page.ClientScript.GetWebResourceUrl(this.GetType(), "DatePicker.Resources.calendarview.css"); LiteralControl include = new LiteralControl(String.Format(includeTemplate, includeLocation)); Page.Header.Controls.Add(include); } private void AddJavaScript(string javaScriptFile) { string scriptLocation = Page.ClientScript.GetWebResourceUrl(this.GetType(),javaScriptFile ); Page.ClientScript.RegisterClientScriptInclude(javaScriptFile, scriptLocation); } } } </code></pre> http://stackoverflow.com/questions/1222330/multiple-file-selection-for-uploading-in-asp-net 3 Multiple File Selection For Uploading in ASP.NET IrfanRaza 2009-08-03T13:23:02Z 2009-12-07T20:40:49Z <p>Hi Friends,</p> <p>There are several resources available on net to upload multiple files, but using multiple FileUpload controls. What I need to have multiple file selection dialog box so that user can select multiple files at one shot and then all files should be uploaded on one click.</p> <p>Anyone of you have any idea?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1859732/page-postback-even-after-showing-validation-summary 0 Page postback even after showing validation summary IrfanRaza 2009-12-07T12:38:49Z 2009-12-07T12:55:48Z <p>Hello friends, I have a masterpage, having same old header, footer and content sections. I have different aspx pages bases on this masterpage. But each aspx contains a web user control. </p> <p>For ex. MasterPage -> SiteMaster.master, ASPX -> CreateBid.aspx, Web Control -> CreateBid.ascx.</p> <p>I have used validation controls within web controls showing validation summary within the same control. The problem here is that, the page postbacks even if validation fails. The validation summary is also shown, but page is postbacked. </p> <p>Could someone help me why this is happening?</p> <p>Although the page is postbacked, no code is executed. For ex. If i am clicking on Submit button, nothing is submitted, i could see the validation summary or messagebox but the page is refreshed. If i am considering simple aspx without masterpage the validation works perfectly without page refresh.</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1845244/getting-mimetype-for-a-file-without-using-file-extension-with-c 0 Getting mimetype for a file without using file extension with C# [closed] IrfanRaza 2009-12-04T06:35:43Z 2009-12-04T06:35:43Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/58510/in-c-how-can-you-find-the-mime-type-of-a-file-based-on-the-file-signature-not-th">In C# how can you find the mime type of a file based on the file signature not the extension. </a> </p> </blockquote> <p>Hello friends,</p> <p>I am creating a web application with ASP.Net. I need to force download a file using generic handler. For this i need to know the mime type of the file that is stored on server. I have a solution for this, to store the mime type while uploading the document using fileupload control. But for my curiosity I want to know how could i know the mime type of a file without using its extension OR using the contents of file. Does C# provides any class or method to get the mime type of file from its contents?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1687377/browser-takes-long-time-to-render-html-controls-asp-net 0 Browser takes long time to render html controls asp.net IrfanRaza 2009-11-06T12:49:08Z 2009-11-29T20:40:47Z <p>I have an aspx page showing lots of information in a tabular format on ajax tab container. Approximately 3 to 5 tabs are used. I have used some of AJAX controls such as CalendarExtendar, ValidationCallout etc on page. My problem is that the page is loaded fast but the browser takes long time for rendering the controls. On my local system the page loading takes around 8 seconds while on server it is taking about 25 seconds. I have also disabled the viewstate wherever applicable and even compressed the viewstate using gzip. </p> http://stackoverflow.com/questions/1789936/memory-uses-by-aspnetwp-exe 0 Memory uses by aspnet_wp.exe IrfanRaza 2009-11-24T13:01:50Z 2009-11-28T23:16:50Z <p>Hello friends!</p> <p>I am having an asp.net 2.0 web application running from Visual studio 2005. The initial memory consumption for aspnet_wp.exe is about 2K. As i navigate different pages having GridView and other controls the size is increasing (around 47K). </p> <p>My question is, if i am closing the browser why not the memory is released or even if i close the VS2005 still the memory consumption is the same.</p> <p>I have checked all open db connections and closed them carefully, still the problem exists. Could some one guide me why this is happening and what is the resolution?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1808804/style-visibility-not-working-in-firefox 1 style.visibility not working in FireFox IrfanRaza 2009-11-27T13:33:15Z 2009-11-27T13:42:26Z <p>Hello friends,</p> <p>I am having an aspx page with a panel. I am using the panel as to show a messagebox. The panel id is "panMessage". The panel contains a button label "Hide". I am showing the panel using code behind but need to close the panel with JS when user clicks on Hide button. I have attached the following code with onclick event of the button - </p> <pre><code>onclick="javascript:(&lt;%=panMessage.ClientID%&gt;).style.visibility='hidden';" </code></pre> <p>the click event works perfectly in IE but not in FireFox. I have googled and changed the code as -</p> <pre><code>onclick="javascript:(&lt;%=panMessage.ClientID%&gt;).style.display='none';" </code></pre> <p>but still the code is not working i.e. the panel is not going to hide in FireFox although it works in IE using this new code also.</p> <p>Could someone guide me whats wrong i have done? </p> <p>Thanks for your cooperation.</p> http://stackoverflow.com/questions/1788739/how-to-close-db-connections-used-by-gridview-control-in-asp-net 0 How to close db connections used by GridView control in asp.net IrfanRaza 2009-11-24T08:46:38Z 2009-11-24T11:44:44Z <p>Hello friends,</p> <p>I have a website with pages having GridView in it. I am using SQL Data Source control to bind with the GridView. After running the site i am checking the no of active connections with SQL Server using -</p> <p>SELECT db_name(dbid) as DatabaseName, count(dbid) as NoOfConnections, loginame as LoginName FROM sys.sysprocesses WHERE dbid > 0 GROUP BY dbid, loginame</p> <p>I found that even after exiting my web application the connections remains open. So is there any way to close these connections. This is very important for me because as the number of users increases the no. of active connections are also increasing causing the sql server max pool issue. Although i have increased the user connections on sql server but i need the solution to explicitly close those connections as soon as user logs off.</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1782770/invoking-button-click-event-on-one-page-from-another-page-asp-net 0 Invoking button click event on one page from another page ASP.NET IrfanRaza 2009-11-23T12:10:03Z 2009-11-23T12:24:09Z <p>Hello friends,</p> <p>I have two aspx pages i.e. default1.aspx and default2.aspx. Default1 contains some controls, tables etc. I am showing Default2.aspx into anthor window using hyperlink, setting its target to _blank. What I need is to call a button event which is placed inside Default1.aspx as soon as Default2 is closed (i.e. as soon as the new window showing default2 is closed).</p> <p>Although, I know that this can be accomplished by showing the default2 into a modal popup i.e. show the default2 into a modal dialog and after that call the button event using javascript. But due to some reasons i am not permitted to do that.</p> <p>Could some one please show me how i could do that.</p> http://stackoverflow.com/questions/1078197/determining-if-asp-net-is-properly-registered/1740404#1740404 0 Answer by IrfanRaza for Determining if ASP.Net is properly registered IrfanRaza 2009-11-16T06:23:52Z 2009-11-16T06:31:00Z <p>Please check this link, might be helpful... <a href="http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/07da7720-c59a-4d73-9701-0021f0e5eb8b" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/07da7720-c59a-4d73-9701-0021f0e5eb8b</a></p> <p>Here is another link <a href="http://www.agusblog.com/wordpress/c-code-to-determine-which-version-of-the-net-framework-is-installed-177.htm" rel="nofollow">http://www.agusblog.com/wordpress/c-code-to-determine-which-version-of-the-net-framework-is-installed-177.htm</a></p> http://stackoverflow.com/questions/1729962/error-in-stored-procedure 1 Error in Stored Procedure IrfanRaza 2009-11-13T15:32:57Z 2009-11-14T19:48:54Z <p>Hello friends,</p> <p>I am trying to create an SP for presenting paged data on aspx page. I have written following code -</p> <pre><code>Create PROCEDURE [dbo].[sp_GetAllAssignmentData_Paged] @currentPage INT=1, @pageSize INT=20 AS BEGIN SET NOCOUNT ON; with AssignmentData As( select ROW_NUMBER() over (order by a.StockNo desc) AS [Row], a.StockNo,c.ClaimNo,v.[Year],v.Make,v.Model, c.DOAssign,c.InsuranceComp,c.Location,c.Status from dbo.Assignments a, dbo.Assignment_ClaimInfo c, dbo.Assignment_VehicleInfo v where (a.AssignmentID=c.AssignmentID) and (v.AssignmentID=c.AssignmentID) order by a.StockNo desc ) SELECT StockNo, ClaimNo, [Year], Make, Model, DOAssign, InsuranceComp, Location, [Status] FROM AssignmentData WHERE Row between ((@currentPage - 1) * @pageSize + 1) and (@currentPage*@pageSize) END </code></pre> <p><hr></p> <p>When I try to create this SP following error message is generated - The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP or FOR XML is also specified.</p> <p>Could someone correct my mistake?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1648274/using-savepagestatetopersistencemedium-for-master-page-asp-net 0 Using SavePageStateToPersistenceMedium() for Master Page ASP.NET IrfanRaza 2009-10-30T06:12:19Z 2009-11-11T09:15:41Z <p>VS 2005, ASP.NET with C#, Windows XP, II6</p> <p>Hi,</p> <p>Please refer to the topic <a href="http://www.codeproject.com/KB/viewstate/SaveViewState.aspx" rel="nofollow">http://www.codeproject.com/KB/viewstate/SaveViewState.aspx</a>. The topic demonstrates how you can save ViewState to a file system over server so as to make ViewState very small on roundtrips. The author had created a class BasePage by inheriting System.Web.UI.Page and all the pages are derived from this class.</p> <p>The site i am developing uses a masterpage and all the pages are derived from this masterpage. When i try to override SavePageStateToPersistenceMedium(), a compilation error is generated indicating that there is no such method to override within System.Web.UI.MasterPage.</p> <p>Does anyone of you have an idea, how could i solve this problem.</p> <p>Your help is highly appreciated.</p> <p>Thanks and Regards Irfan</p> http://stackoverflow.com/questions/1713857/getting-source-control-id-in-javascript-function 1 Getting source control id in javascript function IrfanRaza 2009-11-11T08:40:43Z 2009-11-11T08:47:20Z <p>Hi,</p> <p>I have taken three textboxes over aspx page. A javascript function is associated with these textboxes as-</p> <p>TextBox1.Attributes.Add("onkeypress","MyFunction()");</p> <p>TextBox2.Attributes.Add("onkeypress","MyFunction()");</p> <p>TextBox3.Attributes.Add("onkeypress","MyFunction()"); </p> <p>The MyFunction() is defined within a javascript file.</p> <p>What I want is to get the control id of the textbox on which the function is associated within the javascript function itself. That is the javascript function should look like this -</p> <p>function MyFunction() { var myControl = ?; alert("Key press event occured in "+myControl.ID); }</p> <p>I need the value of ?, what should i write there so that i could get the control id i.e. TextBox1, TextBox2 or TextBox3 on which the event occured.</p> <p>I know that &lt;% =TextBox1.ClientID %> will provide the id of TextBox1 on client. But I think as I am attaching the onkeypress event with the textbox i should get the source control id within javscript function itself.</p> <p>Your help is highly appreciated.</p> http://stackoverflow.com/questions/1648274/using-savepagestatetopersistencemedium-for-master-page-asp-net/1713841#1713841 0 Answer by IrfanRaza for Using SavePageStateToPersistenceMedium() for Master Page ASP.NET IrfanRaza 2009-11-11T08:36:27Z 2009-11-11T08:36:27Z <p>I have found the solution. Actually the aspx page is derived from System.Web.UI.Page while the masterpage is derived from Control class. There the method SavePageStateToPersistenceMedium() is available within aspx page only not in master page. You have to override this method within each aspx page or create your own base class derived from Page class and then override the method.</p> http://stackoverflow.com/questions/1706673/getting-server-side-javascript-over-client-side 0 Getting server side javascript over client side IrfanRaza 2009-11-10T09:35:37Z 2009-11-10T12:21:40Z <p>Hi,</p> <p>I have created custom control using asp.net 2.0. The control contains a textbox txtDate. I have also created a javascript file DateMask.js which contains a function maskDate(). I have attached the maskDate() with textbox using -</p> <p>txtDate.Attributes.Add("onkeypress","maskDate()");</p> <p>I have also registered the script using ClientScript.RegisterStartupScript.</p> <p>When I execute the aspx page containing my custom control it is generating script error showing that maskDate() is undefined.</p> <p>Could anybody tell me what exactly the problem is?</p> <p>Thanks for your cooperation.</p> http://stackoverflow.com/questions/1701888/getting-control-id-within-javascript -2 Getting control id within javascript IrfanRaza 2009-11-09T15:47:48Z 2009-11-09T16:03:34Z <p>Hi,</p> <p>I have created my own code to provide date masking and validation for TextBox control in asp.net. Below is the code. The code works perfectly.</p> <p>function IsValidDate(ctrlID) { var validDate=true;</p> <pre><code> var myT=document.getElementById("ctl00_ContentPlaceHolder1_CandidateResume1_TabContainer1_TabPanel2_Education1_"+ctrlID); var mm=myT.value.substring(0,2); var dd=myT.value.substring(5,3); var yy=myT.value.substring(6); if(mm!=0 &amp;&amp; mm&gt;12){ myT.value=""; validDate=false; } else { if((yy % 4 == 0 &amp;&amp; yy % 100 != 0) || yy % 400 == 0) { if(mm==2 &amp;&amp; dd&gt;29){ myT.value=""; validDate=false; } } else { if(mm==2 &amp;&amp; dd&gt;28){ myT.value=""; validDate=false; } else { if(dd!=0 &amp;&amp; dd&gt;31){ myT.value=""; validDate=false; } else { if((mm==4 || mm==6 || mm==9 || mm==11) &amp;&amp; (dd!=0 &amp;&amp; dd&gt;30)){ myT.value=""; validDate=false; } } } } } if(validDate==false) { myT.style.backgroundColor='#FF0000'; myT.focus; } else myT.style.backgroundColor='#FFFFFF'; } function maskDate(ctrlID) { var myT=document.getElementById("ctl00_ContentPlaceHolder1_CandidateResume1_TabContainer1_TabPanel2_Education1_"+ctrlID); var KeyID = (window.event) ? window.event.keyCode : 0; if((KeyID&gt;=48 &amp;&amp; KeyID&lt;=57) || KeyID==8) { if(KeyID==8) return; if(myT.value.length==2) { myT.value=myT.value+"/"; } if(myT.value.length==5) { myT.value=myT.value+"/"; } } else { window.event.keyCode=0; } </code></pre> <h2> }</h2> <p>The problem -</p> <p>I am attaching these functions to the textbox as - TextBox1.Attributes.Add("onFocusout","IsValidDate('TextBox1');"); TextBox1.Attributes.Add("onKeyPress","maskDate('TextBox1');");</p> <p>If you look at the javascript code I have collected the control id in myT variable. I have also passed the id of textbox while attaching the js functions using Attributes.Add()</p> <p>My problem is that i dont want to pass the id of the textbox as i am already attaching it. That is i want to write the code as</p> <p>TextBox1.Attributes.Add("onFocusout","IsValidDate();"); TextBox1.Attributes.Add("onKeyPress","maskDate();");</p> <p>My question is how can i get the id of textbox to which i have attached these functions witin JS code.</p> <p>NOTE: I DONT WANT TO PASS CONTROL NAME OR CONTROLS CLIENTID WHILE ADDING ATTRIBUTES. PLEASE NOTE THAT I WANT TO REPLACE</p> <p>TextBox1.Attributes.Add("onFocusout","IsValidDate('TextBox1');"); WITH TextBox1.Attributes.Add("onFocusout","IsValidDate();"); I WANT TO ATTACH THESE FUNCTIONS WITH MULTIPLE TEXTBOXES. </p> <p>AS I AM USING .Attributes.Add(...) I WANT TO GET THE SAME CONTROLS CLIENTID WITHIN JS CODE.</p> <p>Your help is highly appreciated.</p> <p>Thanks and Regards Mohammad Irfan</p> http://stackoverflow.com/questions/1681385/problem-with-cache-asp-net 0 Problem with cache asp.net IrfanRaza 2009-11-05T15:43:57Z 2009-11-05T15:53:07Z <p>VS2005, ASP.NET, C#, IIS6</p> <p>Hello friends, I have a master page divided into three sections i.e. header, details, footer.</p> <p>The header section contains web user control having AJAX tab container. We are showing or hiding tabs according to user previleges. Initially only one tab is active showing user to log in. When the user logs in other tabs are activated. </p> <p>I have used &lt;%@ OutputCache Duration="120" VaryByParam="none" %> within my user control. When the user logs in NullReferenceException is generated on one of the method within that control.</p> <p>When I remove the OutputCache, everything works fine.</p> <p>Could someone guide me what should i do?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1628984/disable-jquery-datepicker 0 disable jquery datepicker IrfanRaza 2009-10-27T06:01:10Z 2009-10-27T16:47:12Z <p>Hello friends!!!</p> <p>I have used jquery datepicker in my .aspx page. The control is working fine. What i need is to disable the control if the textbox on which it is linked is disabled. For ex. I am showing datepicker on textbox "txtDateOfAssignment". If the Enabled property of this textbox is false then datepicker should not be active on that. </p> <p>Anybody have an idea?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1631334/how-do-you-deploy-a-blank-copy-of-your-sql-2005-express-database-with-your-asp-ne/1631674#1631674 1 Answer by IrfanRaza for How do you deploy a BLANK copy of your SQL 2005 express database with your ASP.NET project? IrfanRaza 2009-10-27T15:36:30Z 2009-10-27T15:36:30Z <p>See if this could help you <a href="http://rip747.wordpress.com/2007/10/01/sql-server-2005-import-export-reset-identity-keys-no-workaround-2005-sucks-period-the-end/" rel="nofollow">http://rip747.wordpress.com/2007/10/01/sql-server-2005-import-export-reset-identity-keys-no-workaround-2005-sucks-period-the-end/</a></p> <p>Here is another good one <a href="http://dotnetslackers.com/community/blogs/mosessaur/archive/2007/12/09/sql-server-2005-clean-your-database-records-amp-reset-identity-columns-all-in-6-lines.aspx" rel="nofollow">http://dotnetslackers.com/community/blogs/mosessaur/archive/2007/12/09/sql-server-2005-clean-your-database-records-amp-reset-identity-columns-all-in-6-lines.aspx</a></p> http://stackoverflow.com/questions/1623361/jquery-datepicker-issue-asp-net/1625237#1625237 0 Answer by IrfanRaza for JQuery Datepicker issue - asp.net IrfanRaza 2009-10-26T14:44:10Z 2009-10-26T14:44:10Z <p>Hi guys,</p> <p>I found the reason. The problem was because of masking. I have also used the JQuery masking. I found the dates are saved in database but while displaying the dates within text fields it was wipe off the values having single digit because of masking mm/dd/yyyy. For ex. 09/01/2009. </p> http://stackoverflow.com/questions/1623361/jquery-datepicker-issue-asp-net 1 JQuery Datepicker issue - asp.net IrfanRaza 2009-10-26T06:28:03Z 2009-10-26T14:44:10Z <p>Hi,</p> <p>I have used JQuery within my asp.net page. JQuery is working fine. I could see the calendar and can pickup the date. The problem is that when the page is postbacked the value is lost. Am i missing some code? Does anyone of you have the idea?</p> <p>Below is what i have done -</p> <p>1) Included the files - </p> <pre><code>&lt;script src="../scripts/date.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="../scripts/jquery.datePicker.js" type="text/javascript"&gt;&lt;/script&gt; &lt;link href="../css/DatePicker.css" rel="stylesheet" type="text/css" /&gt; &lt;link href="../css/DateCalendar.css" rel="stylesheet" type="text/css" /&gt; </code></pre> <p>2) Linked with the textboxes -</p> <pre><code>jQuery(function($){ Date.format = 'mm/dd/yyyy'; $("#&lt;%=txtAssignDate.ClientID%&gt;").datePicker({startDate:'01/01/1996'}); $("#&lt;%=txtCloseFileDate.ClientID%&gt;").datePicker({startDate:'01/01/1996'}); $("#&lt;%=txtInspectionDt.ClientID%&gt;").datePicker({startDate:'01/01/1996'}); }); </code></pre> http://stackoverflow.com/questions/1558790/button-click-event-called-again-when-page-is-refreshed-using-f5 0 Button click event called again when page is refreshed using F5 IrfanRaza 2009-10-13T07:59:24Z 2009-10-13T08:15:23Z <p>Hi friends,</p> <p>I found that if you press F5 or refresh from browser window, the last event fires again. For ex. I have clicked on a button the button event is carried out normally, but if i press F5 from browser window then the same event is fired again.</p> <p>Could someone have any idea?</p> <p>Thanks for sharing your valuable time.</p> http://stackoverflow.com/questions/1543605/getting-no-of-rows-affected-after-running-select-query-in-sql-server-2005 2 Getting no. of rows affected after running select query in SQL Server 2005 IrfanRaza 2009-10-09T13:00:50Z 2009-10-09T13:06:58Z <p>Hi friends,</p> <p>Below is my query </p> <pre><code>select @monNameStr as [MName], IsNull(count(c.AssignmentID),0), IsNull(sum(s.ACV),0), IsNull(sum(s.GrossReturn),0), IsNull(sum(s.NetReturn),0), IsNull(avg(a.Total),0) FROM dbo.Assignment_ClaimInfo c, dbo.Assignment_SettlementInfo s, dbo.Assignment_AdvCharges a Where c.Assignmentid=s.Assignmentid and s.Assignmentid=a.Assignmentid and a.Assignmentid in (select AssignmentID from dbo.Assignment_ClaimInfo where (upper(InsuranceComp)=upper(@CompName) or upper(@CompName)='ALL COMPANIES') and (DateName(month,DATEADD(month, 0, DOFileClosed))+' ' +cast(year(DATEADD(month, 0, DOFileClosed)) as varchar)=@monNameStr)) Group By c.InsuranceComp Order By c.InsuranceComp where @monNameStr is calculated date field like 'October 2009' </code></pre> <p>What i need to know the no. of records affected by this select query.</p> <p>I DONT NEED TO NEST THIS QUERY TO ANOTHER QUERY WITH COUNT() FUNCTION.</p> <p>Your valuable help is appreciated.</p> http://stackoverflow.com/questions/1520309/access-running-instance-of-application 1 Access Running Instance Of Application IrfanRaza 2009-10-05T14:08:35Z 2009-10-05T15:51:07Z <p>Hi,</p> <p>I found there are lots of posts showing how to detect if the application instance already running. But I cant find any one that shows how to access or use the same running application.</p> <p>I have created shell menu items and linked them an application. For ex. If you right click on any folder it shows "OS Monitor". If i clicked on that an application is started. If I again right clicked on the folder and selected "OS Monitor" another instance of same application is started. I have to prevent this. Further more when user closes the "OS Monitor" form I just made it hidden. So that if the user again selects the same menu option then the same running form need to show.</p> <p>I have created the application using C#2005. Does anybody have the idea how I could access the same running instance of the application.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1047030/twice-postback-in-asp-net 1 Twice postback in ASP.NET IrfanRaza 2009-06-26T02:08:00Z 2009-09-16T08:42:30Z <p>Hi,</p> <p>My page is fully postback twice. I am using master page with AJAX. The structure of master page is as follows.</p> <p>+---------------------------------------------+</p> <p>| Web User Control with AJAX Tab Control |</p> <p>+---------------------------------------------+</p> <p>| | | |</p> <p>| Col1 | ContentPlaceHolder | Col3 |</p> <p>| | | |</p> <p>| | | |</p> <p>+---------------------------------------------+</p> <p>The web user control contains the AJAX Tab Container with AutoPostback on.</p> <p>I have created several ASPX pages using this masterpage.</p> <p>The content place holder also gets a web user control depending upon page.</p> <p>Whenever I jump on a page by clicking on tab the page is fully postbacked twice. I dont understand whats the reason. That makes viewing reports cumbersome as it requires double time.</p> <p>Please visit - <a href="http://softwaregenius.net/ivnew4" rel="nofollow">http://softwaregenius.net/ivnew4</a> to get idea. I am not able to give loginid.</p> http://stackoverflow.com/questions/1187437/how-to-convert-byte-to-sql-image/1188112#1188112 0 Answer by IrfanRaza for How to convert Byte[] to sql image IrfanRaza 2009-07-27T13:17:30Z 2009-07-27T17:53:56Z <p>Here is a sample function</p> <pre><code>public bool AddCompanyIcon(string MakeName, byte[] BytesOriginal,string ImageName) { try { System.Data.SqlClient.SqlParameter[] ImgPara = new SqlParameter[3]; ImgPara[0] = new SqlParameter("@MakeName", MakeName); ImgPara[1] = new SqlParameter("@MakeIcon", BytesOriginal); ImgPara[2] = new SqlParameter("@ImageName", ImageName); db.ExecuteScalerSP("sp_AddAutoCompanyLogo", ImgPara); db.CloseConnection(); return true; } catch { return false; } } </code></pre> <p>Below is <code>sp_AddAutoCompanyLogo</code> stored procedure</p> <pre><code>ALTER PROCEDURE [dbo].[sp_AddAutoCompanyLogo] -- Add the parameters for the stored procedure here @MakeName varchar(50), @MakeIcon image, @ImageName varchar(50) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; -- Insert statements for procedure here insert into IVAutoGalleryLogos(MakeName,MakeIcon,ImageName) values(upper(@MakeName),@MakeIcon,@ImageName) END </code></pre> <p>Hope this will help...</p> http://stackoverflow.com/questions/1186791/need-binary-tree-control-in-vb6 0 Need Binary Tree Control in VB6 IrfanRaza 2009-07-27T06:53:09Z 2009-07-27T13:19:49Z <p>Hi,</p> <p>I just need to ask, does anyone have link to free resources where I could get the control to draw a binary tree using VB6. Note that I am not saying regarding TreeView control in VB6. </p> <p>I need a control to draw a binary tree like</p> <p>1</p> <p>/\</p> <p>2 3</p> <p>/\ /\</p> <p>4 5 6 7</p> http://stackoverflow.com/questions/1158086/session-not-ending-in-asp-net 0 Session not ending in ASP.NET IrfanRaza 2009-07-21T09:09:08Z 2009-07-21T09:20:42Z <p>Hi,</p> <p>I have created an asp.net application in which i have used global.asax. I have created a static class which stores user information such as LoginID, CompanyID etc using properties. A property IsLoggedIn indicates whether user logged in or not. I have created a method ResetAll() within the same class to reset those properties. </p> <p>The problem is that if the user directly closes the browser window without logging off the property values are not resetted. Therefore if the user opens a new browser window, the user is logged in automatically. I have also called ResetAll() within from Session_End() but still it is not working. Could someone explain me whats wrong with that or simply how to reset the property values if the user directly closes the browser window.</p> http://stackoverflow.com/questions/1046929/total-with-select-query 0 Total with select query IrfanRaza 2009-06-26T01:13:30Z 2009-06-26T01:34:06Z <p>Hi,</p> <p>Consider the following data:</p> <pre><code>Insurance_Comp | 1To30DaysAgeing | 31To60DaysAgeing | 61To90DaysAgeing | TotalVehicles ============================================================================= ABC | 30 | 5 | 20 | 55 XYZ | 10 | 35 | 5 | 50 </code></pre> <p>I am calculating the number of vehicles aged for particular group after a stock# is assigned to that vehicle. The number of vehicles for a group (ex. 1 to 30 Days Ageing) is calculated using a complex query. I have written SP to get this result. What I want is to calculate the total of vehicles while executing the same select query. For simplification I have created functions in SQL to get number of vehicles for each group. </p> <p>Right now I m using the query like this ...</p> <pre><code>Select Ins_Comp, dbo.fn_1To30Ageing(...), dbo.fn_31To60Ageing(...), dbo.fn_61To90Ageing(...) from Table Where .... </code></pre> <p>I am calculating the total using RowDataBound event of GridView in ASP.NET with C#. Is there any way to calculate the total within query itself? By the way I dont want total as dbo.fn_1To30Ageing(...)+ dbo.fn_31To60Ageing(...) + dbo.fn_61To90Ageing, because that requires double processing time.</p> <p>Thanks for sharing your valuable time...</p> http://stackoverflow.com/questions/1926779/programmatically-adding-validation-control-to-asp-net-page/1926808#1926808 Comment by IrfanRaza on Programmatically adding validation control to asp.net page IrfanRaza 2009-12-18T07:25:25Z 2009-12-18T07:25:25Z Yeah that worked. Thanks Smazy! http://stackoverflow.com/questions/1873122/validation-controls-not-applicable-to-web-custom-controls-in-asp-net/1898604#1898604 Comment by IrfanRaza on Validation controls not applicable to web custom controls in asp.net IrfanRaza 2009-12-15T14:27:03Z 2009-12-15T14:27:03Z Thanks Bryan!!! http://stackoverflow.com/questions/1873122/validation-controls-not-applicable-to-web-custom-controls-in-asp-net/1898604#1898604 Comment by IrfanRaza on Validation controls not applicable to web custom controls in asp.net IrfanRaza 2009-12-14T06:45:33Z 2009-12-14T06:45:33Z Thanks Bryan! But not all the instances of my custom control are required. http://stackoverflow.com/questions/1859732/page-postback-even-after-showing-validation-summary/1859745#1859745 Comment by IrfanRaza on Page postback even after showing validation summary IrfanRaza 2009-12-07T13:01:21Z 2009-12-07T13:01:21Z Yeah, thanks Pandiya. My problem solved. http://stackoverflow.com/questions/1859732/page-postback-even-after-showing-validation-summary/1859745#1859745 Comment by IrfanRaza on Page postback even after showing validation summary IrfanRaza 2009-12-07T12:58:35Z 2009-12-07T12:58:35Z I am reading that, but still my problem not solved. Please read my edits to question. http://stackoverflow.com/questions/1808804/style-visibility-not-working-in-firefox/1808829#1808829 Comment by IrfanRaza on style.visibility not working in FireFox IrfanRaza 2009-11-27T13:42:39Z 2009-11-27T13:42:39Z Thank all of you my friends! You guys are genius. The code is working fine. http://stackoverflow.com/questions/1789936/memory-uses-by-aspnetwp-exe/1789960#1789960 Comment by IrfanRaza on Memory uses by aspnet_wp.exe IrfanRaza 2009-11-24T13:17:36Z 2009-11-24T13:17:36Z Thanks buddy! You are absolutely right, but when i close the process tree from task manager i found that all the active db connections are closed. So in my opinion this might be happening because of the connection spooling. http://stackoverflow.com/questions/1789936/memory-uses-by-aspnetwp-exe/1789957#1789957 Comment by IrfanRaza on Memory uses by aspnet_wp.exe IrfanRaza 2009-11-24T13:13:44Z 2009-11-24T13:13:44Z Thanks Andrew! but even after waiting for 10 minutes the size remains still the same. http://stackoverflow.com/questions/1789936/memory-uses-by-aspnetwp-exe/1789953#1789953 Comment by IrfanRaza on Memory uses by aspnet_wp.exe IrfanRaza 2009-11-24T13:11:30Z 2009-11-24T13:11:30Z Thanks J.W.! So do you mean its the issue related with garbage collection or should i call GC explicitly? http://stackoverflow.com/questions/1788739/how-to-close-db-connections-used-by-gridview-control-in-asp-net/1789529#1789529 Comment by IrfanRaza on How to close db connections used by GridView control in asp.net IrfanRaza 2009-11-24T12:10:25Z 2009-11-24T12:10:25Z Thank you again Mick for having a nice explanation. So in your opinion there is no explicit way.... http://stackoverflow.com/questions/1788739/how-to-close-db-connections-used-by-gridview-control-in-asp-net/1789556#1789556 Comment by IrfanRaza on How to close db connections used by GridView control in asp.net IrfanRaza 2009-11-24T12:06:51Z 2009-11-24T12:06:51Z Thanks buddy! Have u personally checked that? Because after setting pool off does not solve my problem. http://stackoverflow.com/questions/1788739/how-to-close-db-connections-used-by-gridview-control-in-asp-net/1789529#1789529 Comment by IrfanRaza on How to close db connections used by GridView control in asp.net IrfanRaza 2009-11-24T11:55:38Z 2009-11-24T11:55:38Z Thanks Mick! I could do that, but isn't there a way to close these connections? http://stackoverflow.com/questions/1782770/invoking-button-click-event-on-one-page-from-another-page-asp-net/1782840#1782840 Comment by IrfanRaza on Invoking button click event on one page from another page ASP.NET IrfanRaza 2009-11-23T12:29:53Z 2009-11-23T12:29:53Z Thanks Fabiran! ok, is there any way to notify default1 that default2 is closed? http://stackoverflow.com/questions/1782770/invoking-button-click-event-on-one-page-from-another-page-asp-net Comment by IrfanRaza on Invoking button click event on one page from another page ASP.NET IrfanRaza 2009-11-23T12:26:55Z 2009-11-23T12:26:55Z ofcourse, thats why i am showing default2 into new window http://stackoverflow.com/questions/1729962/error-in-stored-procedure/1729982#1729982 Comment by IrfanRaza on Error in Stored Procedure IrfanRaza 2009-11-13T15:39:25Z 2009-11-13T15:39:25Z Yes you are right!!! Thanks