13,153 Topics
![]() | |
I have a .Net web service which appears to be working fine. I generates a WSDL and I can sucessfully test it locally. I am using the basic code below in CF to consume the service: [CODE]<cfinvoke method="getBannerViews" returnvariable="getBannerViews" webservice="http://www.xzxxxxxxxxx.org/ws/bannerAdViews.asmx?WSDL" refreshwsdl="true">[/CODE] Problem is, I am getting this very long error … | |
Hi guys I have this asp.net site that works just fine on windows.When viewed under firefox in in linux mint the character encoding is incomprehensible(You cant read the words which means the character encoding is not supported.).Other sites like google and forbes just work fine so i wondered what is … ![]() | |
How To Run all the methods of a web form application in web service. I Have a webproject (made with web forms) . i want to run the project with a Web service. Is it Possible ? please give the steps . Thanks. | |
[CODE]<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound"> <ItemTemplate> <div id="dvRowData" runat="server" class="itemRows"> <div id="dvStoreId" class="w30" style="display: none"> <%# Eval("StoreId")%> </div> <div id="dvStoreName" class="w200s"> <a href="#" id="basic" runat="server"> <%# Eval("StoreName")%></a></div> <div id="dvEnabled" class="w200s" style="display: none"> <%# Eval("Enabled")%></div> </div> </ItemTemplate> </asp:Repeater>[/CODE] | |
in html [CODE]<div id="dvEmpName" class="w200s"> <a href="#" id="[COLOR="Red"]basic[/COLOR]" runat="server"><%# Eval("suppname")%></a></div> here href id is basic which is used for the java script function so in code add repeater itemdatabound event protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { RepeaterItem rowItem = e.Item; if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { … ![]() | |
hi, i just have a question. i am creating a website using asp.net(c#) and i want that when a user click on a particular page (ex. login) the page becomes an https by using an IIS self signed certificate. can you help me what i need to search for etc … | |
How to host a asp.net c# web project in a windows service. Please give some step by step instruction. . Please note that it is Not a webservice | |
add it in html in repeater [CODE]<div id="Div2" class="w200s"> <input type="checkbox" id="check" class="basic1" checked= '<%# Eval("arunr")%>' runat="server" disabled="disabled"/> </div> [/CODE] in code [CODE] public class arun { public string suppid { get; set; } public string suppname { get; set; } public string dispname { get; set; } public bool … | |
Hi, I m currently working in VB.NET with asp.net I have the following string: sBIG = LTC16CS#PBF I need to find whether the above word contains any word say "#" How to get it? i need to capture "#" to do if else statement I could not find a method … | |
hello ! i am working on a single page of asp ,and i am using ext js 4.0 with it . i have a grid of extjs , my task is to show records in that grid from mssql server 2008 , for getting records i am using webservice . … | |
<input id="hiddentemp" runat="server" type="hidden" /> // Place Control in source // Write new function in js file function showmsg() { if (document.forms[0].hiddentemp.value == "1") display(); } // Call this function in Body in Source <body class="" onload="showmsg()"> //write on Page load as hiddentemp.Value = "0"; //write on Save Button hiddentemp.Value … | |
Hi , In my application I have to implement Tooltip for Link Button. When mouse hover on link button , I should get a Tooltip. It can be a Telerik ToolTip as well. Please help me with this concept. I need step by step process for implementing this. Regards. | |
Hi I am trying create a site to upload a video files from a file upload control and convert them into a single format before storing the file path in a database for easy retrieval. I have managed to do all of the uploading and storing file path part, but … | |
I am using Entity Framework in Visual Studio linked to a back end database and would like to change the column name of the tables. Currently they have underscores which I want to remove, although there are many tables and columns. Is there an easy way to do this? I … | |
Hello! I am making a simple web application with a database. I want to show all the members from a specific group. The group is selected in a drop down list which is populated from my sql database table tblGrupper. I have managed to populate a GridView with the groupID … | |
sql SP ALTER PROCEDURE arunsss @suppid VARCHAR(50), @suppname VARCHAR(50), @dispname VARCHAR(50), @exists bit output AS SET @exists=0 BEGIN IF EXISTS (SELECT suppname from [supp] where suppname=@suppname) SET @exists=0 ELSE BEGIN if(@suppid is null) begin select @suppid= isnull(MAX(convert(int,suppid)),0)+1 from us.dbo.supp where ISNUMERIC (suppid)=1 end INSERT INTO [us].[dbo].[supp] ([suppid] ,[suppname] ,[dispname]) VALUES … ![]() | |
All the webpage data will be converted into PDF file, You can also add details such as ur name etc by using Chunk chunk1 = new Chunk("By Vishal RAne, [email]vishalrane50@example.com[/email] \n",FontFactory.GetFont("Verdana", 8)); The pdf will be saved on desktop.... u can change location by using PdfWriter.GetInstance(Doc, new FileStream(Environment.GetFolderPath (Environment.SpecialFolder.Desktop)+ "\\VishalRane.pdf", … | |
Right now my company uses Crystal Reports for report documents. We are running into HUGE errors and limitations that we need to get rid of. Anyone have any suggestions for Crystal reports alternatives? We have a somewhat unique deployment patter, our customers all use our application on their own local … | |
G'day folks, I'm looking for an asp.net alternative to CKeditor excluding Tinymce and the ajaxcontroltoolkit jobbie. And yes, a free one there are any around because I'm doing this jobbie for free. CKeditor 3.6.2 said it had bugfixed the cursor vanishing but it seems that the cursor vanishes still and … | |
i'm given an ftp username/password to update a website via the ftp server. the project calls for the fileupload control. a file shud be uploaded onto the server. instead, it says "The server randdomain.com:80 requires a username and password". it works fine on VS on my computer, whats going on? … | |
Hi guys, i am currently working on a project that queries an inventory database through the use of radio buttons, for example; If the first button FOR THE Item(HAMMERS)is clicked, the output should be the name of the item, the number sold and the total profit(calculations) into a table. the … | |
I have a sql table for storing unique e-mails.I need a stored procedure that could let a user that uses aspnet page to insert data know that the e-mail address already exists on a table and specify a new one. The table looks like this: EMailID int NOT NUL (1,1), … | |
Hi guys i'm writing a script (Visual Studios 10 express) to simulate a restaurant cash register. I am having problems gettin my values from each selected item to add up and display in the subtotal label. As of now i have it to where when i select a quantity of … | |
here is my code i want update the two fields without refreshing whole page.... | |
I need to made a project for travel agency, In this project I should make this part which I wrote below The manager of travel agency can review and regulate the offer for his travel agency. He should be able to add more detailed description. He can see and reported … | |
We're looking for a way to enable users to send us a file using one of our web pages. Cannot use MailAttachment because page doesn't have rights to write files to a directory (we can't change that) so are trying a Google Data API to upload to our Google Docs … | |
Is there any C++ .Net IDE's around? I mean visual studio is ok.. it just isn't as good as SharpDevelop which only does C#, VB and a few others. It doesn't do C++ that's why I'm looking for a C++ version of SharpDevelop. Any Ideas? SharpDevelop [url]http://www.icsharpcode.net/opensource/sd/[/url] | |
I need help how to solve this part of my project which is presented below. Could someone help me how to solve this? The application has three types of users: Administrator, Manager and User. - The administrator logs in the system with their user name and password. he can to … | |
function Close() { $('.mask').hide(); $('.window').hide(); } function display() { $('.mask').css({ 'width': 1700, 'height': 1500 }); $('.mask').fadeIn(100); $('.mask').fadeTo("fast", 0.8); $('.window').css('top', 200); $('.window').css('left', 375); $('.window').css('display', 'inline'); $('.window').fadeIn('slow'); } function display1() { $('.max').css({ 'width': 1500, 'height': 900 }); $('.max').fadeIn(100); $('.max').fadeTo("fast", 0.8); $('.wind').css('top', 200); $('.wind').css('left', 375); $('.wind').css('display', 'inline'); $('.wind').fadeIn('slow'); } function Close1() { $('.max').hide(); … | |
Hi I have developed an ASP.NET Crystal Reports website on my machine (VS-2005, x86 pc). I have included the following 'Mergemodules from Crystal' in my websetup. - - Microsoft_VC80_ATL_x86.msm - policy_8_0_Microsoft_VC80_ATL_x86.msm - CrystalReportRedist2005_x86.msm This website worked fine when I deployed to Windows server 2008 machine. However, when I deployed to … |
The End.