Member_3259094
Posts
-
calender -
Master page issuehello There is challenge with me in master page. In the master page i have two ContentPlaceHolder. In ContentPlaceHolder1 has SearchButton and ContentPlaceHolder2 has gridview to bind result. Event fires and datasource is showing data but html is not rendering. So please give me solution to over come this issue.
-
Read binary of .RAW file as imagehow to generate image by byte could you give me the code. because i have tryed it by different ways.
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
Read binary of .RAW file as imagesorry this is not working. the binary data which is stored in database that type is raw file
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
Read binary of .RAW file as imagehi I am working for fingerprint. The fingerprints are stored in database in binary formate and that file is RAW file. I have to show it in form as image . so how can i do this. Any one help me .
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
LINQ DataContexthello all can i create datacontext without using "LINQ to SQL Classes (DataClasses2.dbml)" ? please give any link or example
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
Passing an ID to an external .js fileif you are using masterpage then you must below code to access asp control like document.getElementById('<%= chkBox1.ClientID%>'); or change the form's default name according you and access the control by FORMNAME.GETELEMENTBYID plz check it.
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
[Message Deleted]please try one thing. just set the viewstate property false.
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
sql queryif you are concanating two columns then place it with in brakets like (brok.FirstName+' '+brok.LastName) as BrokerName Hope this will work fine.
Rajeev Kr. Sharma Sr. Software Engineer E-Meditek Solutions Ltd. http://www.emeditek.co.in/
-
validation controls<%@ Page Language="C#" EnableEventValidation="false" MasterPageFile="~/Backend/Home.master" AutoEventWireup="true" CodeFile="Backend.aspx.cs" Inherits="Backend_Backend" Title="Untitled Page" %> <%@ Register Assembly="System.Web.Extensions" Namespace="System.Web.UI" TagPrefix="cc" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <script language="javascript" type="text/javascript"> function CheckTime(s,e) { var ddl1 = document.getElementById('<%=ddl_starttime.ClientID %>'); var ddl2 = document.getElementById('<%=ddl_endtime.ClientID %>'); var selIndex1,selIndex2; selIndex1 = ddl1.selectedIndex; selIndex2 = ddl2.selectedIndex; if(selIndex1 > selIndex2) { e.IsValid = false; } } </script> <div class="container"> <div class="containerin"> <div class="head-a"> <div class="head-txt"><a href="#">Manange My Openhomes</a> > <a href="#">Add a New Openhome</a></div> </div> <div><img alt="" src="images/spacer.gif" height="10px" border="0" /></div> <div class="online">Add a new Openhome</div> <div class="bot-table"> <div class="row"> <div>Property Location</div> <div><img alt="" src="images/spacer.gif" height="10px" border="0" /></div> <div align="center"><table width="60%" cellspacing="7" cellpadding="0" border="0"> <tr> <td class="row_form" width="10%" valign="top">Street Number</td> <td align="left" width="50%" valign="top"> <asp:TextBox ID="txtStreetNumber" runat="server" Width="300px" Font-Names="Tahoma" Font-Size="16px" ForeColor="#919295" BorderStyle="Solid" BorderColor="#aaaaaa"></asp:TextBox> <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtStreetNumber" ErrorMessage="Wrong value street Number not entered" ValidationExpression="^\d+$" SetFocusOnError="True" Display="None"></asp:RegularExpressionValidator> <asp:RequiredFieldValidator ID="rfv_streetno" runat="server" ControlToValidate="txtStreetNumber" ErrorMessage="Street Number not entered" SetFocusOnError="True" Display="None"></asp:RequiredFieldValidator> <asp:ValidationSummary ID="ValidationSummary1" runat="server" HeaderText="Please check the f
-
validation controlsvalidation control shows error but page is getting postback on button click.
Rajeev Kr. Sharma InfoFace Technologies Pvt. Ltd.
-
validation controlsi think behaviour of required validation control is to prevent page postback if field is empty.
Rajeev Kr. Sharma InfoFace Technologies Pvt. Ltd.
-
validation controlsactualy validation controls shows error message but page get postback. so how to avoid page post back when validation controls show error.
Rajeev Kr. Sharma InfoFace Technologies Pvt. Ltd.
-
validation controlshello i have used required field and regular expression validator on my page. but either field is empty or not page get post back. plz help me some one
Rajeev Kr. Sharma InfoFace Technologies Pvt. Ltd.
-
Html Encoderhello i am getting a string from some where . and showing that in a editor. but if that text is not well formated in html then editor is not working . so i want to check that string is well formated in html or not.
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected
-
How can I get the HTML of a ASP control before rendering?try this namespace MyProject.ViewManeger { /// /// Summary description for ViewManager /// public class ViewManager { public static string RenderView(string path)//path of the user control { return RenderView(path, null); } public static string RenderView(string path, object data) { Page pageHolder = new Page(); UserControl viewControl = (UserControl)pageHolder.LoadControl(path); if (data != null) { Type viewControlType = viewControl.GetType(); FieldInfo field = viewControlType.GetField("Data"); if (field != null) { field.SetValue(viewControl, data); } else { throw new Exception("View file: " + path + " does not have a public Data property"); } } pageHolder.Controls.Add(viewControl); StringWriter output = new StringWriter(); HttpContext.Current.Server.Execute(pageHolder, output, false); return output.ToString(); } }
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected
-
session problemafter login i can add folder in my account. and also i have a option to delete that folder. but when i delete any folder my session is set as null and redirect to login page.
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected
-
session problemi think this is mac OS or SYSTEM based reply but i am using windows .
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected
-
session problemhello when i delete folder then session is getting null. please help
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected
-
directory deletei am also surprise.
Rajeev Kr. Sharma VRI Software Pvt.Ltd. New Delhi India HumOnline.com Stay Connected