5,691 Topics
![]() | |
Hi. When I try to execute code below I got an error 'Internal error occurred.' [COLOR="Red"]certificate = new X509Certificate2( p12FileBytes, p12FilePassword [/COLOR]); and when I made change to [COLOR="Red"] certificate = new X509Certificate2( p12FileBytes, p12FilePassword,X509KeyStorageFlags.MachineKeySet );[/COLOR] I got another error [B]'Access Denied.'[/B] How can I fix it? In advance THANKS … | |
hi i am working on gridview and i want to show my data in gridview on button click by applying java script. so When i show data without applying java script the gridview is visible and as i apply js the gridview becomes invisible while using other controls with the … | |
hello i am using windows xp and i have installed IIS but in-spite of it i can not run asp program i when ever write [url]http://127.0.0.1[/url] or localhost i get error please help me | |
Hi, all I Have a problem with the DropDownList in a DataGridView( I am using ASP.Net c#). I Would like to fill the DropDownList in the DataGridView with information retrieved from a DataTable for example if a particular product I have 10 left in stock I would like to fill … | |
I have done my homework but couldn't find any good solution so I am here asking for help. I want to make pages like the structure below. www .yoursite . com/Content.aspx?Privacy www .yoursite . com/Content.aspx?About_us www .yoursite . com/Content.aspx?Security I hope you get the problem. Any help would be greatly … ![]() | |
Hi Im a first time poster.(please be gentle XD) I'm hoping someone can help me. I just would like to ask if - aside from datagridviews and manually drawing tables- there is another way to draw data onto a page, in tabular form? The problem is that the data I … | |
Hello I wish to create a file hosting website like Rapidshare or Mediafire ..... How can I do that ? Is there any website where I can get a sample code. Will this be a good topic for a Minor project !!!! Please help ... | |
| |
Hi. I've been trying to populate a <select> option list in HTML by querying a Microsoft SQL Server database. For some reason I can not do this by mixing the scripting code (VBscript) with HTML. If I place the query between the <select> and </select> tags it does not run … | |
Hi Everyone, Thanks for viewing this thread. I have called a 1 of the HTM page when the user click on 1 of the button [B]This is the code that i have did in the asp[/B] [CODE] <% if request.Form("btnPrint") <> "" then For counter = 0 to CInt(request.Form.Item("txtREG")) labeltype … | |
Good Evening All I want to create a unique value for my User in Silverlight and access this value on the asp.net page that is part of the silverlight website. So i cant use cookies because they wont work and i cant do the client site cookie thing because it … ![]() | |
I want to print all the numbers in the loop ..... How should I do it ? Please help ! [CODE] <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication5._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat ="server" > void Page_load() { int counter = 0; while (counter <= … | |
Please review the code as i am geting the error where i have placed arrow mark on the code section. Afer editing when i click on the update the below error is fired. what i am doing wrong Error: Unable to cast object of type 'System.Web.UI.WebControls.DataGridLinkButton' to type 'System.Web.UI.WebControls.TextBox'. using … | |
I need urgent Help plz. scenario: Oracle Database and Client 10g are installed on same system. I want to connect my website with database ( i am new to oracle and ASP.Net) ORA-12514: TNS:listener does not currently know of service requested in connect descriptor My web.config file contains code [code] … | |
hello all, i m trying to edit the values in database through textbox in ASP. first i retrived the values from database and set those values to the value property of textboxes on the form so that user can see the old values. now, i want him to enter new … | |
Hi, i'm implement chatting in c# using Remoting in Window form. But i want to apply this concept on an Asp.net web site Like a Facebook chatting application but i have no idea how to implement to do this. please send me suggestion or code. or can we use third … ![]() | |
I Programmed A CMS ( Control Mangament System ) With ASP And When I Programmed The Search Engine This Error Messege Apears : [CODE]Microsoft JET Database Engine (0x80040E14) Syntax error (missing operator) in query expression '??????? like '%??? ??????%' or ?????? like '%??? ??????%' or ????? ??????? like '%??? ??????%' … | |
I have to create a button on my website suppose [url]www.mymantos.com.When[/url] someone click on this button , then it ask for facebook user name & password.After valid login,it post the link of website i.e. [url]www.mycantos.com[/url] on user facebook update. | |
hai i have used adrotator in top of the page and left i have link buttons which is in panel . Then right i have iframe..tat iframe shows the page which is clicked by link button. but my adrotator picture is not changing.but when i refresh the page its changed.. … | |
Hi I am wondering if ASP.NET has the feature to capture camera from a web page. I am trying to create a WEB APPLICATION for video conferencing. Thank you | |
Hi, This is a good snippet: [CODE]dim strSQL as String = "INSERT INTO tbl_civil_works(orgcode, item_works, descr, qty_area, " & _ "units, rates, amount, timestamp_now) VALUES(" & intOrgCode & _ ", '" & param(0) & "', '" & param(1) & "', '" & param(2) & "', '" & param(3) & _ … | |
Hello All, I am creating a website with password-protected pages in it. I have two type of customer: 1. Free 2. Paid For paid customers, pages would be rendered over HTTPS whereas for free customer, pages will be rendered over HTTP. However, pages for both types of users would be … | |
Hi, I have a problem with asp.net insertion data in SQL data base. I am using SQL Express with ASP.NET 4.0. I had written the code correctly and it was working fine as well, but now it does not insert the data in the database. It started behaving abnormally when … | |
Good Day All I have another question. I have a Silverlight application and in one of the Silverlight pages i am hosting an Asp.net Page using a RadhtmlContainer(Telerik). I created a Cookie in Silverlight like this [CODE] public static void SetCookie(string key, string value) { // string oldCookie = HtmlPage.Document.GetProperty("cookie") … | |
Hello, I have a big problem with opening asp.net website. I have building asp.net website months. Yesterday I have install a fresh Windows7, and after that install Visual Web Developer 2010 express from which I have build website. Now when I open webiste in Web Developer, and browse with Internet … | |
web.config [CODE] <connectionStrings> <add name="Conn" connectionString="Dsn=odbc_OnlineAcc;uid=sa;pwd=12345" providerName="System.Data.Odbc"/> </connectionStrings> [/CODE] C# [CODE] string connect =ConfigurationManager.AppSettings["Conn"]; OdbcConnection odbcConnection = new OdbcConnection(connect); odbcConnection.Open(); [/CODE] error message is "connection property is not initiated"; How can I solve it? Thanks to all................ | |
Hi I need a little bit of help on this one: I have a csv file (date, hour, country, indicator, current, previous) Please help with the code that will allow me to display the events that will occur in the next 4 hours Thanks | |
hi i am using visual studio 2008 and i want to save a text file in local path so can anyone explain how to open save dialog box in ASP.NET while i click button .please send with example coding thanks regards suresh.S | |
I'm trying to make the following piece of code to work. [CODE]Login LoginControl = (Login)PreviousPage.FindControl("Login1"); if (LoginControl != null) { TextBox UserName = (TextBox)LoginControl.FindControl("UserName"); if (UserName != null) { Label1.Text = UserName.Text; } } else { Label1.Text = "Cannot find user name in Login control."; }[/CODE] This is an example … ![]() | |
hi there, i am trying to build an website and i have formatted them with div tags, but when i view the same page in a web browser the text boxes and the labels are not in a proper place. how do i fix it the code is below [CODE] … | |
Dear sir How can i Delete the file which are in one folder in asp.net | |
hi! i am using update panel with asynchronous post back trigger but the page which is having his code doesnot work properly..i have scroll bar in this page..n when ever i scroll down it automatically scrolls up...how could i resolve this problem Collapse <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional"> <ContentTemplate> <div id="ChatContent" … | |
Hi, I have this newsletter code, that takes emails from the recordset Tonews and sends a specific message + attach [CODE]dim cdoConfig Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(cdosmtpserverport) = 26 .Item(cdoSendUsingMethod) = 2 .Item(cdoSMTPServer) = smtpserver .Item(cdoSMTPAuthenticate) = 1 .Item(cdoSendUsername) = musername .Item(cdoSendPassword) = mpassword .Update End With dim … | |
hey guys basicaly passing a datatable to populate an asp:checkboxlist & i have the choice of horizontal or vertical. is there any other way i can do this to make several rows of these? say, 5 across or place in a div or panel with width constraints that will make … | |
hi, i want to build my final project in asp.net using c# database as SQL server 2005 interface as Xhtml,Ajax,jquery and javaScript i want some cool ideas which are uniqe and unsean thanks | |
Hi i am using ASP.NET.I want to create Insertquery using Dataset.I have created this using DataSet1TableAdapters; FirstNameTableAdapter first = new FirstNameTableAdapter(); DataSet1.LoginDataTable de = first.InsertQuery(TextBox1.Text, TextBox2.Text); and error is Error: Cannot implicitly convert type 'int' to 'DataSet1.LoginDataTable I also want to use same iN Dataset and want to create Login. … | |
Hi Guys! Been away for sometime but im back now. Im working on a website on ASP.NET. I have trouble with fitting pages within the browser window i.e i have to scroll horizontally to view all the content on the pages. At first i thought it had to do with … | |
Hi guys, I've just managed to get 99% of a script running for my website. I am creating a system where a user can create an invoice using our billing system, and then download it via PDF. I am using Persists PDF module and I have got it all working. … | |
Hi I'm not an asp .net developer although I have done web development with php and mysql, I'm more of a software developer for desktop and mobile devices. So this is my first big project with ASP .NET. I have a question with the ASPNETDB database, understand that the database … | |
can anyone please tell me how to create simple html editor with bold,code tags. And how to add html tag content in file using streamwriter at runtime. and also tell how to use <code>tag in asp.net 4.0 its producing error | |
HELP! I am a medium duty VB.Net developer and want to start developing web applications and converting some of my VB apps to web apps. I know the basics and have put together a working ASP.Net application with no problem. I have the mechanics working fine. I just can't seem … | |
how to show word,rtf,pdf file in asp.net plz give me code thnks in advance | |
Hi, I'm having a problem with an ASP.net website and CSS. I've pasted my CSS code from a previous website (HTML and CSS) to have a look at it. I've copied the basic divs etc into the masterpage. But I'm finding that the layout isn't centered. The layout would normally … | |
Hello, I am writing a prog with ASP in C#. I have 2 separate pages. on the first page there are 2 textboxes and a button. the first box is a validation check (a code) the second one is the ammount of money you want to withdraw (max of 1000) … | |
Hi All, My project requires me to add the Google Analytics code for tracking purposes. I have added the script that I got from another developer. I want to know if this code can show up in the pages with page lits (e.g) 1000 views) or is it hidden and … | |
i have a logs table which have the following fields like username , id , checkintime, checkOuttime and date so i want to select a start date and end date from the calender and then click submit button so it can search data from data base and display data start … | |
Formula field on crystal report of asp.net as hyperlink | |
hi, i am create one application in which i have to use blob datatype. but i declare property like this [CODE]private byte[] PAssignmentText1; public byte[] AssignmentText1 { get { return PAssignmentText1; } set { PAssignmentText1 = value; } } [/CODE] in mysql database AssignmentText1 have blob datatype how to use … | |
I am workin on eclipse Helios Service Release 2, serser Tomcat 7. When i try to reach test.jst i get error 404, type Status report message /bandymas/view/test.jsp description The requested resource (/bandymas/view/test.jsp) is not available. it is strange becouse i can reach error.jsp in the same directory, using the same … | |
Hi. I'm an experienced programmer, but one who has never used .NET technology before. The college I recently started working for will be decommissioning some old servers during the Summer, and I'd like to make a start on moving the applications to their new home. I thought I would start … |
The End.