13,153 Topics

Member Avatar for
Member Avatar for murtazanaqvi

[CODE] <%@ Page Language="C#" AutoEventWireup="true" CodeFile="managesurveys.aspx.cs" Inherits="managesurveys" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <script type="text/javascript"> function newAttribute() { var d = document; // get field labels var lbl_attribute_new = document.getElementById('js_lbl_attribute_new').value; var lbl_attribute_del = document.getElementById('js_lbl_attribute_delete').value; var lbl_property_new = document.getElementById('js_lbl_property_new').value; var lbl_property = document.getElementById('js_lbl_property').value; …

Member Avatar for prvnkmr194
0
590
Member Avatar for daytonasteve

I've migrated a test site to asp.net 4.0 to take advantage of the list renderingmode for a menu. Having the UL and LI should be easier than the table rendering. I'm making progress, (still have work to do, just ignore the odd border) however one issue continues to plague the …

0
34
Member Avatar for elgarfan

Hi, I've been using iTextSharp PDF library for a while, but now want to do something tricky. At least it seems tricky. I simply want to change the dimensions of a page in a PDF document I'm busy creating.. but change it *after* I've added content to it. In other …

Member Avatar for elgarfan
0
2K
Member Avatar for 123mehran

Hi i want when no item selected after Submit show this message "Nothing Selected" what should i do ? Thanks [CODE]Protected Sub Btnsub_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Btnsub.Click lblresult.Text = "You Chose:<br/>" Dim Lstitems As ListItem For Each Lstitems In CheckBoxList1.Items If Lstitems.Selected Then lblresult.Text &= …

Member Avatar for MamathaS
0
154
Member Avatar for Nitin Daphale

In my application I place standard mail messages in web.config . But if message contains '\n' and mail is sent, it doesn't implement as newline character in mail body. [CODE] System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage(); mail.To = to; mail.From = From; mail.Subject = subject; mail.BodyFormat = MailFormat.Html; mail.Body = body; …

Member Avatar for Fortinbra
0
169
Member Avatar for alokshri67

Hello All, I am using [B][U][I]sotirovic:BannerRotator[/I][/U][/B] for my add file. In which I am taking image file and .swf files. With image files it is navigating properly, but with .swf file it is not navigating . Where I am went wrong? Here is codes [CODE] <div style="background-color: Aqua ; width:80%; …

0
51
Member Avatar for aplee

I hope you could help me with my documentation. Please help me to compare and give advantages and disadvanatges of the following based on your experience: MS ACCESS FORMS versus VB.NET STANDALONE APPLICATION versus WEB APPLICATION (intranet) for example : __________________________________________________________________________ 1.CATEGORY|2.ACCESS FORMS|3.VB.NET(WINFORM)|4.VB.net(WEB)|5.comments ___________________________________________________________________________ 1.DEPLOYMENT|2.fail|3.fail|4.pass|5.when deploying standalone applications,you need to …

0
77
Member Avatar for Sarama2030

i would like a registration form in html to pass its form fields values to an asp.net's form's onload event procedure. how do i access the field values passed by the html form.the idea is to update a database using these values without using asp.net's web controls.

0
67
Member Avatar for nice_candy

hi, i have created a web form that input data from user and insert it into the mysql database by calling stored procedures butt i am facing the following error " Exception during execution of 'p_AddUser': Invalid attempt to access a field before calling Read() ". plz help me how …

0
85
Member Avatar for nice_candy

hi, plz help me how can i get the return value of mysql stored function from ASP.net with c#. Currently i m using the following code for this purpose [code] string strConnect = "Data Source=" + host + ";Database=" + database + ";User ID=" + user + ";Password=" + password …

Member Avatar for nice_candy
0
211
Member Avatar for shakeit13aby

[url]http://s1220.photobucket.com/albums/dd448/shakeit13aby1/?action=view&current=esurvey.jpg[/url] Picture above shows that i have a nested gridview which is supplier gridview inside question gridview how do i insert into [COLOR="Red"]one mysql table[/COLOR].while according to which question, which supplier, userid and also answer... inside my mysql table contains of userid supplier question_id (to replace long question) answer Urgent …

0
68
Member Avatar for haripriyamca05

I want to send simple mail from my web application through asp.net c# code. I have lot of sample codings to send mail but i need a proper guide to enable smtp server in my localhost since i dont have any static ip or web server. My system is in …

0
83
Member Avatar for shakeit13aby

Hello i am using VWD2008 and new to it i have 2 table in mysql db (tablename=question, supplier) i can show question table using gridview. and now i am facing a problem where i wan to show my supplier table in a gridview as well and located at the last …

0
50
Member Avatar for drspock

Hi, I am having a lot of difficulties with the DataGridView control in Windows Forms. No matter what I do, I can not affect the height of rows in any way, shape, or form. I try to set the grid's properties so that it will automatically resize to row contents, …

Member Avatar for Mitja Bonca
0
86
Member Avatar for jigneshdesai
Member Avatar for kieky

hi.. i'm trying to send mail from my website using GMAIL account. But after i use it, my website running very slow (for about 20-30second). Do u have solution to make it faster?

Member Avatar for kieky
0
88
Member Avatar for electrox73

Hi, I am able to create a clock in a console c++ app...like this one show UTC hours:[CODE]#include "stdafx.h" #include <iostream> #include <windows.h> #include <stdio.h> void main() { SYSTEMTIME st, lt; GetSystemTime(&st); GetLocalTime(&lt); std::cout << st.wHour << std::endl; std::cin.get(); }[/CODE] But I am not able to create this with the …

Member Avatar for jonsca
0
294
Member Avatar for jesseoak

Hi! I've got two background pictures, one is blurry, the other one is the same picture, but more colorful. The default background image is the blurry one. When I move the cursor, I'd like to change the background image from the blurry to the colorful one, but only in a …

0
106
Member Avatar for barriegrant1

i am trying to pass a number of values from one page to another, i have managed to pass both the category ID and sub category ID, however i am unable to pass the "product_id" value. as you can see from below i am getting the product_id using a stored …

Member Avatar for Fortinbra
0
285
Member Avatar for mike9822

Hi my problem is that so I can't add new data to database. I wrote procedure in mssql 2008 and now i don't now how coneecting this with asp.net [code] Create procedure [dbo].[addData] @name nvarchar(50), @telephone int, @place nvarchar(50), @street nvarchar(50) AS Declare @person_id int, @place_id int BEGIN if not …

Member Avatar for khadakbist
0
77
Member Avatar for saravind84

Hi All, I have a ASP.net web application developed using C#. It has got a button on click of which an excel file is shown to the user. User can save or open the file. But this operation takes about a minute to complete. I wish to implement Ajax in …

Member Avatar for khadakbist
0
150
Member Avatar for VinayRok

Hi Friends, Am working on SSRS reports, have written a query where i need to check one column with the is NULL or is NOT NULL with parameter. in runtime depending on the condition of the parameter, result should come. how i can do this ???

Member Avatar for khadakbist
0
72
Member Avatar for G_Waddell

Hi All, I'm working on a web app in ASP.net with VB.Net on Visual Studio 2010 (.Net Framework 4). I'm trying to use a datarepeater class to display results from a query on the web page so I coded away exactly as I used to in Visual Studio 2008. However, …

Member Avatar for khadakbist
0
162
Member Avatar for guptaalok12

i am developed one simple single payment gateway in this customer can fill all the basic information and the amount afterwards i am redirected to moneybookers.com. everything is working fine but i dont no how to retrieve the moneybooker posted values in my status_url please if any one know fix …

Member Avatar for khadakbist
0
127
Member Avatar for pdoyle1521

First I want to thank you for the help and I am somewhat new at C# so forgive me if I have something listed wrong. This is what I got: I am working on a school project designing a car dealership website. I have an inventory list that allows you …

Member Avatar for pdoyle1521
0
204
Member Avatar for kirti_1988

provide code for getting a print out of a page or part of page... like print out of admit card or payment.....

0
38
Member Avatar for krunalkakadia

hi all, i have image path name in database and i am fetching it this way. [code] con.Open(); string img= "select imgPath from Tbl_Image where imgId='1'"; SqlCommand cmd = new SqlCommand(img,con); SqlDataAdapter da = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); da.Fill(ds); con.Close(); [/code] i got path name in ds. …

Member Avatar for krunalkakadia
0
83
Member Avatar for aplee

Hi everyone, I hope you could help me with my problem I am a fresh graduate and I am working now as a developer in a good company By the way, I am not the one who developed this tool, it's the previous programmer and they gave the project to …

Member Avatar for aplee
0
241
Member Avatar for ecrockers

Hi all, I am trying to make my application browser comaptible... Now my issue is that I am not able to fire a javascript whose definition is in one frame and I am calling it from other frame ....rite now I have achieved it in IE and chrome..... But its …

Member Avatar for kvprajapati
0
75
Member Avatar for Netcode

Hi guys! I just installed a new windows vista on my newly bough hard drive. i tried to deploy my web application to the local IIS server but the default web site appears to be stopped which prevents any site from being accessible over the LAN and when i try …

Member Avatar for Netcode
-1
91

The End.