No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
God is all 4 me
Software Developer,Cochin...Did B.Tech at M.ES. Engg.College,Kuttippuram in Computer Science and Engineering...
31 Posted Topics
How to delete my windows application app.exe in program files on uninstalling in c#....On uninstalling my exe its not getting removed from program files...I gave the administrative rts as follows for my app.exe...Also under which event i should write the code to do so... Collapse | Copy Code ` Inline … | |
How to create database with needed data script in windows application set up See more: C#4.0 How to create database with needed data script in windows application set up...I want to do so on running a setup file where a window to enter db name etc msut come and then … | |
How to check an item already entered in a listview if i am entering data from a combo box from both tables for an id as value member...I mean there is both software id and asset id that can be added mixed in the listview based on the group.... | |
select top 2 for a single column,,others with all data in sql | |
How to maiantain checkbox state under onclick of javascript...checkbox losing its state under onclick of javascript...Onchange when set works in firefox but not in chrome and IE...Onclick works but checked state gone... Collapse | Copy Code <script type="text/javascript"> function salaryshowhide() { var lfckv = document.getElementById("<%=chksal.ClientID%>").checked; if (lfckv== true) { document.getElementById("<%=txtsal1.ClientID%>").disabled … ![]() | |
How to delete datas form a table with foreign key relation via lInq to sql delete query..I am getting foreign key constraint issue on deletion... | |
How to convert date format to dd/MM/yyyy in Linq to Sql select Query I tried as below: DataTable dt = Common.dc.TblMaintenances.Where(a => a.ContractId == Id && a.IsScheduled == true || a.IsScheduled == false).OrderBy(a => a.ScheduledDate).Select(a => new { a.MaintenanceId, a.MaintenanceDate.ToString("dd.MM.yy"), a.MaintenancePerson,a.Remarks,a.ScheduledDate,a.IsScheduled,a.Cost }).getDataTable(); But didn't work | |
How to make css ! important work in Google chrome...Its working in firefox and IE.. My css as follows: Collapse | Copy Code dxgvControl_Office2003Blue a { color: black; } .lnkjobref { color: Blue !important; text-decoration: underline; } Blue color not coming in chrome alone... | |
How to resolve File doesn't exists url routing errorin global.asax... | |
How to generate Dynamic where condition for single stored procedure and pass from code behind asp.net.... | |
How to Get Difference between frommonth with fromyear compared to tomonth with toyear.... For instance one has work experience with frommonth March and fromyear 2006 and tomonth June and fromyear 2007 duration should be 1 year and 3 months...Also there would be multiple work experience with various durations as mentioned... … | |
set focus to textbox on blur validation...I am doing character strength validation on the blur event of textbox..How to set focus to it... | |
Remove the last word while using left in sql query...I weant to avoid broken words while doing so... My query as follows: select top 2 tempJobTitle.id,tempJobTitle.JobRefId,tempJobTitle.JobTitle,LEFT (jobmaster.JobDescription2, 330)+'....' as JobDescription,jobmaster.PostedDate from tempJobTitle inner join jobmaster on jobmaster.JobRefId=tempJobTitle.JobRefId where tempJobTitle.Status='Approved' and jobmaster.ClosingDate >= '2013-03-01' order by tempJobTitle.DateofEntry desc | |
Get listbox values added via javascript on server side via hidden field.... See more: ASP.NET Get listbox values added via javascript on server side via hidden field.... | |
Sql query to index @ in full text search of a binary file ![]() | |
How to find email address format(@) in word or pdf files stored as binary file via indexing in sql server 2008...I am able to retrieve files with keyword search using sql where contains query,...How to find email address format in stored binary files via indexing.. | |
` web..config <system.webServer> <modules runAllManagedModulesForAllRequests="true"> <remove name="UrlRoutingModule"/> <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> </modules> <handlers> <add name="UrlRoutingHandler" preCondition="integratedMode" verb="*" path="UrlRouting.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> </handlers> </system.webServer> ` Tried the following code under global.asax of application_start RouteTable.Routes.MapPageRoute("Category", "categories/{id}", "~/JobReport/WebForm1.aspx?id=longvalue"); and under page load of the page as Response.RedirectToRoute("Category", … ![]() | |
redirecting to aspx page which is quite big..For instance jobreport/Detailedjob/JobRefID.aspx?Jobid=1234 ... i WANT TO shorten it as jobreport/JoBRefid.aspx?jobid=1234 code behind on page load.. | |
I am redirecting using different roles superadmin,hr assistant etc to aspx pages with in folders respectively..But in foreign iis <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <configSections> <sectionGroup name="devExpress"> <section name="settings" type="DevExpress.Web.ASPxClasses.SettingsConfigurationSection, DevExpress.Web.v12.1, Version=12.1.6.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" requirePermission="false"/> <section name="compression" type="DevExpress.Web.ASPxClasses.CompressionConfigurationSection, DevExpress.Web.v12.1, … | |
I wish to focus to the top portion of aspx page on changing the view of multiview under button click...I have set update panel but triggers are given for some and hence post back occurs...Provide a solution at the earliest... | |
Prevent aspx page jumping to the top portion under button click..I have set update panel but triggers are given for fileupload and few other given...Hence post back occurs....But still i want the aspx page to remain where it is... | |
I want to send mail to large number fast asp.net....It takes some time for me...My code as follows string s14 = "select email from CandidateReg1"; // string s14 = "select top 2 email from CandidateReg1"; DataTable d7 = cn.viewdatatable(s14); for (int m = 0; m < d7.Rows.Count; m++) { email … | |
I want to show Modal Progress until whole process is over under button click ...I am doing bulk mail sending and modal progress has to remain until its over...Its disappearing after some time as the default time interval is 90 sec or so... ![]() | |
I tried the following code and its not working...Base class inheriting error for the customised control ....Its working in a new project....Followed this link http://www.asp.net/web-forms/tutorials/ajax-control-toolkit/htmleditor/how-do-i-use-the-html-editor-control-cs ..But somehow control not inheriting correctly.. ![]() | |
Read a Text "Email:" via stream reader without looping ...Is there any easy method to get it fast as i am checking large number of files at a time.... ![]() | |
How to find candidate email Id from a resume (word or pdf file) in asp.net during bulk upload...I am able to extract the email ids using RichEditDocumentServer..But how to get exactly the candidate email id from a CV..Please provide a solution at the earliest.. ![]() | |
check outlook software exists in asp.net on button click code behind.... | |
Open with body,cc,subject dyanamically and Close outlook without using interop.word.dll on button click...proveide a solution at the earliest.. | |
I want to do a web application that is like touch screen...I wish to set a feedback touch screen web app seen at passport office etc...Please provide a solution at the earliest.. | |
Reorder 5 divs dynamically...Right now i am able to swap between two divs using jquery....I want to reorder divs as per wish...For instance if there are 5 divs as div1,div2,div3,div4,div5 etc i must be able to reposition as any order (div4,div3,div2,div5,div1 etc or div3,div2,div5,div4,div1 etc).....I tried many javascript mentioned but … | |
I want to read data from word file without using interop.word dll..Because i don't want to install word in every server....Is it possible to deploy interop.word without installation of word in iis..If not provide a solution to read word file without it with complete code....I tried with open xml sdk … |
The End.