12,085 Topics

Member Avatar for
Member Avatar for ans2007kumar

Thank you, everyone who helped in solving my queries as a result today after 2 1/2 month my major project is complete. :icon_smile:

Member Avatar for dnanetwork
0
49
Member Avatar for jellybeannn

[code] protected void currency_txt_TextChanged(object sender, EventArgs e) { amountSymbol.Text = currency_txt.Text; } [/code] I'm trying to change a label according to a TextBox, without a button that has to be pressed?

Member Avatar for jellybeannn
0
108
Member Avatar for midhula

i have created a website application in asp.net using c# for our company's typical department.we dont have a server here.so it need to be deployed into a single computer.how shud i do it so that it can be used as a software in a click away...

Member Avatar for dnanetwork
0
545
Member Avatar for Nitin Daphale

//My project is in C#.NET 2.0 I have multiple forms in my mdi container window . [COLOR="Red"]When I tried to close mdi form , form closing event of a child form (which has current focus/active child ) occurs before the form closing event of mdi form.[/COLOR] Can anybody help me …

Member Avatar for Nitin Daphale
0
203
Member Avatar for jamshed ahmed

I HAVE 3 TEXTBOXES (txt1,txt2,txt3) WITH TWO BUTTONS ONE IS HTML BUTTON NAMED AS btnCalculate AND OTHER IS SERVER SIDE BUTTON NAMED AS btnAdd WHAT PROBLEM BOOTHER ME IS THAT VALUES COMES FROM DATA BASE FOR txt1 AND txt2 WHEN I PRESS btnCalculate JAVASCRIPT CODES ARE EXECUTED TO MAKE ADDITION …

Member Avatar for chiragsathit
0
131
Member Avatar for shine_jose

I wish to use a function in .js file in .net using java script which have two parameters ie one getting row value and other getting column value and function should return the table is it possible I am new to java script please help me.

Member Avatar for kvprajapati
0
67
Member Avatar for PreetKamal

hey i also use the same code to highlight the text but its not working.... Binding data and highlighting function is not happening together,.... Is dere some way to sort both...

Member Avatar for kvprajapati
0
57
Member Avatar for Ana_Developer

Hi everyone, I have been using System.Diagnostics.Process.Start("fileName.pdf"); command in order to print my pdf docs in my web app. The thing is, it works perfect on my localhost, but once I upload the code on the server, the files no longer are opened. The path to the file in the …

Member Avatar for kvprajapati
0
59
Member Avatar for ashu2409

Hi, I am trying to upload a large xml file (around 500 MB) on ftp location,but i am getting this error--- it works fine upto 250 MB file The underlying connection was closed: An unexpected error occurred on a receive. i am getting the error on this line:- `" Stream …

Member Avatar for dnanetwork
0
166
Member Avatar for vicky_rawat

I am using following code to create a authentication cookie, but the problem is user is not getting authenticated. Please let me know if I am missing somthing. [code] HttpCookie authCookie = FormsAuthentication.GetAuthCookie(UserLogin.UserName, true); FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(authCookie.Value); FormsAuthenticationTicket newTicket = new FormsAuthenticationTicket(ticket.Version, ticket.Name, ticket.IssueDate, ticket.Expiration, ticket.IsPersistent, userDataString); authCookie.Value = …

Member Avatar for dnanetwork
0
66
Member Avatar for RickyG

I am trying to center the layout in my master page so every other page on site render on the center. Right now , each page expands through the content place holder but doesn't look quite well Thanks [CODE]<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …

0
65
Member Avatar for scorpio222

I have a web service which receives a DIME attachment, downloads the attachment on the server and uses it to execute the web service which would return back the results. Everything is working fine for files of size < 4MB , but i get this error: DIME version received "7" …

0
79
Member Avatar for jamshed ahmed

[CODE] here is java script code function ShowMsg() { if(document.getElementById("txtVerifierName").value=="") { alert("PLEASE ENTER VERIFIER NAME.."); return false; } <asp:Button ID="btnAdd" runat="server" Text="ADD" OnClientClick="ShowMsg()" onclick="btnAdd_Click" /> [/CODE] NOW THE PROBLEM IS THAT WHEN I CLICK THE BUTTON, IT SHOWS THE MESSAGE THAT PLEASE ENTER VERIFIER NAME BUT EXECUTION DOESN'T STOP THERE, …

Member Avatar for jamshed ahmed
0
213
Member Avatar for capiono

I a method that generates a PDF and the method returns a byte value, but after response.end statement, the shows an error that the "File does not begin with '%PDF-' here is the code: [CODE] private static Byte[] GenerateReports(string templateFilePath, DataTable table, string fileName) { Byte[] Output = null; string …

Member Avatar for Kreadus
0
120
Member Avatar for Dan301978

Hi guys, Please see the enclosed URL for my question. I'm told this is the way to post if you have asked a question on another forum. The idea being that people can follow the URL to see if someone has already put in the work of answering it and …

0
81
Member Avatar for miweiser

I'm just going to post my pages here if someone will take a look and let me know where to go from here...sorry, I could have attached files if you would prefer. I am not sure what needs to be in my VB page if anything more is required nor …

Member Avatar for miweiser
0
173
Member Avatar for lisles

i have a datalist that displays the titles of events.When i click a title i want to display the event details like date,venue,description... outside the datalist this is my code: [code] <asp:DataList ID="dlEvents" runat="server" HorizontalAlign="Left" GridLines="Both" OnSelectedIndexChanged="SelectedIndexChanged"> <HeaderTemplate> Events </HeaderTemplate> <HeaderStyle Font-Bold="true" Font-Size="16px" /> <ItemTemplate> <table onmouseover="dg_changeBackColor(this, true);" onmouseout="dg_changeBackColor(this, false);"> …

Member Avatar for lisles
0
186
Member Avatar for dnanetwork

i want a list of all countries and states for free interms of xml,html,word,doc,notepad, .sql format.. anybody have a list..?

Member Avatar for dnanetwork
1
109
Member Avatar for arranhaceu

Hi there, I have a listview control, on which I have two buttons 1) Wesite 2)Email Me. Note the listview only has the Item and Layout Templates as I will not be editing or inserting. I have assigned both the controls the CommandName="select" so that they both fire the SelectedIndexChanged …

Member Avatar for kvprajapati
0
96
Member Avatar for thanlin

Hi all, I have problem with Dataset. I couldn't use dataset in ASP.net editor. I created new object. dim ds as new dataset. I can't write dataset. If somebody know, plz let me know. thanks .

Member Avatar for dnanetwork
0
56
Member Avatar for bhaskarbabar51

I want this code to work as if [flag==0] then set seatcount to 1 else provide me a message that seat is booked but it does not give me proper response it works for seatcount==1 & shows meassage that its booked but for seatcount==0 then also it provide same message …

Member Avatar for dnanetwork
0
147
Member Avatar for Sinha's

Hello Friends, I have a web application where data are stored in a SQL Server database by using an online form in the website. Now I want to have an offline application which will store data temporarily in DB (say MS Access) and later on the data will be converted …

Member Avatar for ac001
0
65
Member Avatar for bekoi

i an devloping a web application on e-recruitment..i have to insert the primary key(which is not shown in the gridview but is in the database) checked values of a grid view inside a separate table in the database..please help...i am working on asp.net.

Member Avatar for rohand
0
55
Member Avatar for ans2007kumar

I just want that to display the entire content of site in the tree view so that admin can navigate anywhere he want's to. and to divide the page in two part one where tree view is and other where navigation is to display. just one thing if you say …

Member Avatar for kvprajapati
0
23
Member Avatar for ktucker

Hi, I am having a problem getting an old ColdFusion program to a vb.net program. Its a distributor finder and I'm trying to take the existing code and move it into a vb.net enviroment. the problem is that I am almost there and this particular program has this code: [code] …

Member Avatar for freshfitz
0
153
Member Avatar for bbxrider

I'm getting schema info but not so far able to bind it into datagrid columns, see code below I can print out the column-name and description and want to bind those into data grid columns [code] Dim schemaTable = dbConn.GetOleDbSchemaTable(OleDbSchemaGuid.Columns, _ New Object() {Nothing, Nothing, "VolDataNew", Nothing}) For i = …

Member Avatar for bbxrider
0
154
Member Avatar for jenroar

Hello! I have been regularly updating a website for a client, but I really only work in HTML or Flash. The client has a problem with the ASP side of their site, and has asked me for help. I don't really know anything about databases or query languages, and I'm …

Member Avatar for bhartman21
0
223
Member Avatar for bochca

Hi ALL I've a problem and i wish i could find any help here ISSUE: Cannot load Protected XPS documetns in Windows 7 Internet Exporer. SYMPTOMS: Internet Explorer in Windows 7 cannot use the Rights Management to open protected XPS documents. ERROR MESSAGE: "This Document Cannot be displayed" "This Document …

0
51
Member Avatar for jarceri

ASP.NET Web Project... "Not Web Application", though it might not matter. Normal MasterPage - > Site.Master Forms Authentication Enabled in the Web.Config file [CODE] <authentication mode="Forms"> <forms loginUrl="/Account/Login.aspx" name="aspNetForm" cookieless="UseCookies" domain="www.localitgeeks.com" path="/" defaultUrl="Default.aspx" slidingExpiration="true" timeout="30"/> </authentication> <authorization> <allow users="*"/> </authorization> [/CODE] Ok so that is the Web.config goo for ya. …

Member Avatar for jarceri
0
128
Member Avatar for midhula

i have created a website application in asp.net using c# for our company's typical department.we dont have a server here.so it need to be deployed into a single computer.how shud i do it so that it can be used as a...

Member Avatar for kvprajapati
0
31

The End.