Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
18% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
6
Posts with Downvotes
5
Downvoting Members
4
3 Commented Posts
0 Endorsements
Ranked #3K
~10.5K People Reached

36 Posted Topics

Member Avatar for shine_jose

help please, I used <A HREF="default.aspx" target="_blank">display text</A> previously it is working.After i changed the order of web forms now the blank page is displaying but page load event is not taking place simply displaying one blank page

Member Avatar for snairsumith
0
162
Member Avatar for shine_jose
Member Avatar for makman99
0
161
Member Avatar for missc

If my view is correct this can be solved with the help of one function and a query i will just give the base. consider your first table tblroom with columns(RID(ie your roomid auto increment) bigint,Rate double,roomtype etc) second table tbleReservation with columns(resid big int primary key identity,rid(foreign key),arrivalDate,departureDate) The …

Member Avatar for missc
0
3K
Member Avatar for xanawa

please go through the link below. [url]http://asp.dotnetheaven.com/aspnet/doc/masterpages/default.aspx[/url]

Member Avatar for xanawa
0
128
Member Avatar for WolfShield

Just use two tables on 1) Book Table with columns BookID,BOOKName etc(Main Details) and 2)Book_Details Table with BookID,ChapterID,ChapterText etc... Where BookID as Foreign Key and BookId and ChapterID will act as combined primary key for unique identification of records.

Member Avatar for WolfShield
0
212
Member Avatar for moshe12007

SELECT * FROM MenUsers union SELECT * FROM WomenUsers I hope this will solve your problems

Member Avatar for shine_jose
0
185
Member Avatar for shine_jose

Hi, I am trying to get control of an opened command prompt.Is there any possible way to do that. So that i can directly pass arguments ie commands to command prompt using c# coding. ( I tried using process but only killing the process is working so that already opened …

Member Avatar for shine_jose
0
2K
Member Avatar for Arjun_Sarankulu

hi, [B]Please try to initialize your sqltransaction object like this and try.[/B] [code] connection.Open(); SqlCommand command = connection.CreateCommand(); SqlTransaction transaction; // Start a local transaction. transaction = connection.BeginTransaction("SampleTransaction"); // Must assign both transaction object and connection // to Command object for a pending local transaction command.Connection = connection; command.Transaction = …

Member Avatar for Arjun_Sarankulu
0
172
Member Avatar for CroCrew

hi, load user controls in panels making panel display properties true or false using code behind as needed

Member Avatar for shine_jose
0
126
Member Avatar for Sinha's

1.check the connection string property. 2.check the objectconnection is open before executing the query for reading the data from database. 3.check whether objected command is initialized using new key word as Mr.samphath suggested in the previous thread . This is the coding in my sql just go through it this …

Member Avatar for crishjeny
0
358
Member Avatar for umair.sabri

Check the validation group property of all controls are same or not .please past the code if still pblm is there

Member Avatar for kvprajapati
0
109
Member Avatar for vvt31011985

I think its difficult in crystal report. You can write data into some .txt file and allign it and print it from dos prompt

Member Avatar for shine_jose
0
77
Member Avatar for erum

code is in c# use [CODE]# str17 = (((TextBox)Tablename.Rows[i].Cells[j].Controls[0]).Text).ToString() [/CODE]

Member Avatar for shine_jose
0
210
Member Avatar for riahc3

use required field validator and set the control to validate in required field validator properties to Your text box name.set validation group of button control and validator control same Give some error message in Text property of validator. if you want use custume validator itself first go to aspx page …

Member Avatar for Freon22
0
834
Member Avatar for Naveed_786

*Go to visual studio File menu->open->web site *give one name to webpage eg myfirstweb.aspx *Then add the controls u need into the web form from tool box *Its suggested to add a table so that formatting would be easy(And place all the controls inside the table cells) *Use a stored …

Member Avatar for shine_jose
0
92
Member Avatar for shine_jose

Hello, I am new to java script i wish to know the code for calling a button click event in asp.net using java script.

Member Avatar for vishal18
0
98
Member Avatar for jamshed ahmed

[QUOTE=jamshed ahmed;1209924]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 …

Member Avatar for chiragsathit
0
134
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
69
Member Avatar for mohit.choudhary

pls try this # private void button1_Click(object sender, EventArgs e) # { # m_strTime += "1"; //no need of space between + and = will be the pblm i think. [QUOTE=mohit.choudhary;1182689]Hello Everybody, Iam not able to figure out why iam getting the following error: [COLOR="Red"]Error 1:[/COLOR]Only assignment, call, increment, decrement, …

Member Avatar for kvprajapati
0
113
Member Avatar for team_ferrari22

[QUOTE=team_ferrari22;1106667]Hi, We are designing a windows application where we need to 'Get tables and columns from existing sql server snapshot file or backup file' . Does anybody know how it can be done. Please provide help. Thank you.[/QUOTE] For restoring backup file 1)Create a database with same name 2)Go to …

Member Avatar for sknake
0
196
Member Avatar for shine_jose

The web site is set to run in server the crystal report header button images and export options are not working please help me

0
71
Member Avatar for shine_jose

Hi, I wish to save a text file to the client system.i had try ed in my desktop its working fine when i run from server its showing error this code i had given and each client system there is a folder name FCR. fs = new FileStream("d:/FCR/FCR" + strdt …

Member Avatar for Geekitygeek
-1
143
Member Avatar for DIPY

if that particular if condition is true only it will have a value to return otherwise you need to give some other values to return in oter section ie public TreeNode FindInstanceNode(string SubContainer,string instance) { TreeNode Node = GetTreeViewClickedNode(); foreach (TreeNode trNode in Node.Nodes) { if (trNode.Text == "SUB-CONTAINERS") { …

Member Avatar for Geekitygeek
0
132
Member Avatar for shine_jose

I wish to test run my newly designed web site from server now its in desktop system please help me.

Member Avatar for djzia
0
96
Member Avatar for shine_jose

To add check box to grid who s auto generate column property is true. I wish to select all the rows who s check box is checked .which can be checked by the user after generating the grid so at generating time all item template check box default values want …

Member Avatar for chandru7
0
136
Member Avatar for shine_jose

I am trying to do grouping the rows according to one field but its getting two rows in detail section of grouped rows instead of one ie same row details is getting duplicated one more time.I try ed the linking of the tables selected for the report all into inner …

Member Avatar for aswiniragunath
0
135
Member Avatar for shine_jose

Hello i wish to retrieve rows from a table based on a particular column which contains null values in sql2000 server I try ed a lot but its not working please help me.

Member Avatar for sknake
0
141
Member Avatar for shine_jose

hai, How to convert crystal report to excel format (with correct alignment,lines and every thing exactly like excel).please help me.

Member Avatar for kvprajapati
-1
101
Member Avatar for shine_jose

Hello, I wish to get the code to pass the log in information (i.e server name,pass word etc) as parameter at the time of calling report Now its asking (user name ,password) before going to the report page each time .please help me.

Member Avatar for Ramesh S
0
466
Member Avatar for lazybones1987

Already inbuilt login controls are there in ASP.net.I think you can use that one.For linking button with data source i am hearing it for first time sorry no idea.

Member Avatar for serkan sendur
0
286
Member Avatar for shine_jose

I wish to use calendar control (i e selected date is to be automatically send to the text box) .The calendar control is to come like a pop up or other way without making position change to other placed controls in the web page.please help me

Member Avatar for serkan sendur
-1
139
Member Avatar for shine_jose

hello, How to bring back the control to already opened web page from a newly opened web page after that.Help me plz

Member Avatar for John A
0
299
Member Avatar for shine_jose

help please, i wish to know the code to redirect to an exsisting open web page from another web page(ie child page want to be closed and control want to be come to parent web form which is already previously opened)

Member Avatar for praveenkumarm
0
315
Member Avatar for shine_jose

hello, would you pls suggest some links to get started with crystal reports in asp.net c# 2008.

0
63
Member Avatar for shine_jose

help please, I used href with target _blank option to view the details in another web page.problem is this when response.redirect is calling the same page.From which href is used its openning another web page ie(same web page one more time so there ) i wish to make that href …

Member Avatar for sknake
0
87
Member Avatar for shine_jose

How to open a web page in Maximized form in asp.net c# webapplication

Member Avatar for Ramesh S
0
96

The End.