Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~10.8K People Reached
About Me

God is all 4 me

Software Developer,Cochin...Did B.Tech at M.ES. Engg.College,Kuttippuram in Computer Science and Engineering...

Favorite Tags
Member Avatar for korathualex

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 …

Member Avatar for Ketsuekiame
0
225
Member Avatar for korathualex

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 …

Member Avatar for Ancient Dragon
0
177
Member Avatar for korathualex

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....

Member Avatar for tinstaafl
0
235
Member Avatar for korathualex
Member Avatar for korathualex

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 …

Member Avatar for LastMitch
0
237
Member Avatar for korathualex

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...

Member Avatar for pritaeas
0
73
Member Avatar for korathualex

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

Member Avatar for pixelsoul
0
1K
Member Avatar for korathualex

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...

Member Avatar for pixelsoul
0
274
Member Avatar for korathualex
Member Avatar for korathualex
Member Avatar for pritaeas
0
81
Member Avatar for korathualex

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... …

Member Avatar for cxzei
0
137
Member Avatar for korathualex

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...

Member Avatar for BMXDad
0
144
Member Avatar for korathualex

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

Member Avatar for adam_k
0
2K
Member Avatar for korathualex

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....

Member Avatar for hometownnerd
0
603
Member Avatar for korathualex
Member Avatar for korathualex

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..

Member Avatar for korathualex
0
167
Member Avatar for korathualex

` 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", …

Member Avatar for LastMitch
0
511
Member Avatar for korathualex

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..

Member Avatar for JorgeM
0
73
Member Avatar for korathualex

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, …

Member Avatar for JorgeM
0
280
Member Avatar for korathualex

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...

Member Avatar for JorgeM
0
165
Member Avatar for korathualex

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...

Member Avatar for JorgeM
0
210
Member Avatar for korathualex

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 …

Member Avatar for pritaeas
0
256
Member Avatar for korathualex

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...

Member Avatar for LastMitch
0
64
Member Avatar for korathualex

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..

Member Avatar for LastMitch
0
102
Member Avatar for korathualex

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....

Member Avatar for LastMitch
0
72
Member Avatar for korathualex

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..

Member Avatar for LastMitch
0
541
Member Avatar for korathualex
Member Avatar for korathualex

Open with body,cc,subject dyanamically and Close outlook without using interop.word.dll on button click...proveide a solution at the earliest..

Member Avatar for JorgeM
0
51
Member Avatar for korathualex

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..

Member Avatar for JorgeM
0
100
Member Avatar for korathualex

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 …

Member Avatar for pritaeas
0
2K