13,153 Topics

Member Avatar for
Member Avatar for nagiub2007

i know this website [write-check](https://www.writecheck.com/static/home.html) his functionality is uploading a file(PDF,Doc) and check percentage of redundancy between the file uploaded and a lot of websites ,books,researches and after user upload file and result shows that result show redundancy percentage and highlight on copied paragraphs . that paragraphs were repeated in …

Member Avatar for LastMitch
0
241
Member Avatar for gileadslostson

I am using umbraco and have set up an event handler to replicate content nodes created in the back office for a multilingual site. I am now trying to attach this to a custom context menu item via a web service that gets the return value of a js confirm. …

Member Avatar for LastMitch
0
187
Member Avatar for halimbawa.dokumento

I put in my usercontrol(.ascx) the facebook social plugin(code below) <fb:comments href="my link here" num_posts="2" width="470"></fb:comments> My problem is it is not showing in my page(when it is in user control). The plugin works fine with aspx but not with the usercontrol.ascx

Member Avatar for LastMitch
0
180
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
517
Member Avatar for Mits14

Hi! I need a help!! I'm currently working on an Online Election. Basically, what i want is to output the list of candidates in every position in my database. I output the list of the positions in a dynamic labels and the list of candidates in a dynamic dropdownlist. For …

Member Avatar for LastMitch
0
341
Member Avatar for anisha.silva

HI i have a web page in asp.net C# and what i want to do is when the submit button is clisked in the web page the class Program p = new Program() should load its constructor and in the constructor there should be a method call to pul the …

Member Avatar for anisha.silva
0
235
Member Avatar for TIM_M_91

Ok so I have a class for all my database connections, what I want to do is populate my gridview from my select statment within my database class. How do I do this? Code can be seen below: Database.cs public static string DeleteChild(string Ssession) { string surname = string.Empty; cmd …

Member Avatar for LastMitch
0
103
Member Avatar for coder91

Having this error appear when I hit a button in a gridview to unlock a user. The description with the error is Description: For security reasons, the identity 'IIS APPPOOL\ASP.NET v4.0' (under which this web application is running), does not have permissions to create the App_Data subdirectory within the application …

Member Avatar for LastMitch
0
494
Member Avatar for levijoseph
Member Avatar for coder91

I have a template field in my gridview which holds a button for each row, however when I test it to see if it's working it doesn't do anything, the page just reloads but nothing has happened. What I want the button to do in the end is to unlock …

Member Avatar for coder91
0
145
Member Avatar for draxous

[CODE] LinkButton lnkBtnRemove = (LinkButton)Repeater1.Items[0].FindControl("lnkRemove"); lnkBtnRemove.Visible = false;[/CODE] i used above code to make visible false of a link button i have placed in a repeater control.but it gives me a error of "Index was out of range. Must be non-negative and less than the size of the collection. Parameter …

Member Avatar for arun1123
0
328
Member Avatar for techinvest
Member Avatar for masoud_sedighy

i have used below code for filtering tree view, search function works correctly, but i do not know how to refresh tree view and populate that after clicking the button. private IEnumerable<TreeNode> FindNodeByValue(TreeNodeCollection nodes, string searchstring) { foreach (TreeNode node in nodes) { if (node.Value.IndexOf(searchstring, StringComparison.CurrentCultureIgnoreCase) >= 0) yield return …

Member Avatar for LastMitch
0
176
Member Avatar for masoud_sedighy

Hello I have searched a lot in Google but I could not find the clear answer. I have used below code for structure of folders and files in server but I need when click on file download dialogue box comes up and ready for download. How I have to improve …

Member Avatar for LastMitch
0
144
Member Avatar for erum

hi to all I have a scanerio thai need to be resolved .. I have grid and it shows certain record on searching ..and have few columsn like transactionID .Stauts etc etc ..also it have ModalPopupExtender under the panel (asp panel ) when i click on status column ..it should …

Member Avatar for LastMitch
0
298
Member Avatar for kumar89hitesh

Hi, i want to know that how can we create A4 size page in asp.net that flow middle of the web page and have scroll bar on 1 side. Please help me. i need quick solution. Here is a link http://www.ehow.com/how_8130066_draw-dfd.html that show web page as i want. Thanks & …

Member Avatar for JorgeM
0
148
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
77
Member Avatar for pearl.kumar1

Hi.I have some Doubt in WCF. I have Create one Simple WCF application,But i have error to call'Add Service reference' "There was an error downloading 'http://localhost:51770/WCF Service/Service.svc'." Kindly,Give the info About why this occur and also how to Rectify this issue ASAP....

Member Avatar for LastMitch
0
171
Member Avatar for mostafa.m.mansy

hi i want to display word file with same style using asp.net c# here is code that display word file content without images ,tables ,etc...... ApplicationClass wordApp = new ApplicationClass(); object file = path; object nullobj = System.Reflection.Missing.Value; object format = true; Microsoft.Office.Interop.Word.Document doc = wordApp.Documents.Open( ref file, ref nullobj, …

Member Avatar for LastMitch
0
216
Member Avatar for chamnab

Dim edit As New Button edit.ID = "edit" & i edit.CssClass = "floatLeft" This code will create a button but its type is 'submit' . How can i change it to 'button' type ?

Member Avatar for JorgeM
0
70
Member Avatar for absolute20
Member Avatar for chamnab

i have two form in html <form action="Default2.aspx" method="post"> <input type="text" name="txtName" /> <input type="text" name="txtGame" /> <input type="submit" value="send" name="test"/> </form> <form action="Default2.aspx" method="post"> <input type="text" name="txtName" /> <input type="text" name="txtGame" /> <input type="submit" value="send" name="test"/> </form> how can i know which form is send to server ?

Member Avatar for chamnab
0
116
Member Avatar for gahhon

What should i do in order to retrieve paypal sandbox reference number after user made their payment and click "Return to <email>"

Member Avatar for LastMitch
0
77
Member Avatar for gahhon

I am done with the payment by using Paypal sandbox.. but i am wondering whether can i change the statement of return (default: Return to gahhon@hotmail.com - according to my email address)? string paypalURL = "https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_xclick&business=" + email + "&item_name=Olympia Open College Tuition Fees + " + programmeName + "+" …

Member Avatar for LastMitch
0
102
Member Avatar for coder91

Have a gridview that lists users who are locked out of the system. Admin staff can go on to this unlockuser page where the gridview will be displayed with the users various details, theres an unlock button on every row for each user. Just wondering what way to write the …

Member Avatar for AleMonteiro
0
288
Member Avatar for coder91

Hi I have a system that allows users to create an account. Theres then an admin side so that if users accounts get locked admin can go on to the unlockuser page where there will be a gridview listing all accounts that are locked out. On each row will be …

Member Avatar for LastMitch
0
120
Member Avatar for chriswelborn

I've added the necessary registry key to have my app run when windows loads: [B]Hkey_Local_Machine\Software\Microsoft\Windows\CurrentVersion\Run[/B] [B]MyProgram[/B] = [B]c:\MyDir\MyProgram.exe[/B] [I]..I've also tryed adding it to the Programs\StartUp folder.[/I] My app still won't load when windows does. Other apps do, and I was wondering what might be preventing my app, and [U]only …

Member Avatar for chriswelborn
0
525
Member Avatar for anisha.silva

Hi, I have a jaso object that i am getting from a API access. how do i deserialize the jason object in C# so that I can get the papameter values. JavaScriptSerializer js = new JavaScriptSerializer(); bookshare bs = js.Deserialize<bookshare>(response); string a = bs.version; when i do this for string …

Member Avatar for anisha.silva
0
230
Member Avatar for anisha.silva

hi i access the Book share API to retrieve data for a book, i search by the isbn, when i do it i get a bunch of text as the request how can i format the content thanks appreciate a reply

Member Avatar for anisha.silva
0
255
Member Avatar for prashant9928

Hello everyone, As a freelance i am working on my own project name myOnlineDesk. I want to make a module in admin section where i can create a database backup file and save to the system. The thing that i want is ".SQL" file. When i click on a Backup …

Member Avatar for hometownnerd
0
833

The End.