User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 427,940 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,620 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 257
Search took 0.02 seconds.
Posts Made By: greeny_1984
Forum: MS SQL 10 Days Ago
Replies: 0
Views: 135
Posted By greeny_1984
help needed in sql server

hi,

iam having three tables as shown below

table 1 table 2 table 3

column1 id ...
Forum: ASP.NET 27 Days Ago
Replies: 5
Views: 837
Posted By greeny_1984
Re: Call Webservice using javascript (Which works on both IE and Fire fox)

hope this helps

http://www.asp.net/learn/ajax-videos/video-82.aspx
Forum: ASP.NET 27 Days Ago
Replies: 1
Views: 286
Posted By greeny_1984
Re: working with GRIDVIEW

hi,
u can use this site to find tutorials on grid view

www.asp.net
Forum: ASP.NET 28 Days Ago
Replies: 2
Views: 598
Posted By greeny_1984
Re: Javascript Alert Box does not Display

the methodu u used is obselete in case of asp.net 2.0 ,u should javascript like this

ClientScript.RegisterStartupScript(this.GetType(), "msg", "<script> alert('Machine Details Added...
Forum: ASP.NET Sep 5th, 2008
Replies: 1
Views: 252
Posted By greeny_1984
Re: how to change the look of my home page on each opening by the user

hi,

if u using asp.net 2.0 ,u can use the concept of themes.if u want more info ,just go googling
Forum: ASP.NET Sep 5th, 2008
Replies: 1
Views: 238
Posted By greeny_1984
why cant we access a boundcolumn which is made invisible in a grid view

hi,
i want to know y cant we access a value in a bound column in a datagrid which is made invisible or else is there a method to retrieve value from a bound column in a datagrid which is made...
Forum: ASP.NET Sep 4th, 2008
Replies: 3
Views: 599
Posted By greeny_1984
Re: Page refresh

u can aslo use this method

In parent page:
protected void Page_Load(object sender, EventArgs e)
{
this.ClientScript.GetPostBackEventReference(this, string.Empty);

if...
Forum: ASP.NET Sep 4th, 2008
Replies: 3
Views: 675
Posted By greeny_1984
Re: search sql database textbox.text

what control u want to display data.there are various ways of displaying data using gridview,datagrid,datalist .. so on.
u need to connect to a database first.
u do that using connection string
...
Forum: JavaScript / DHTML / AJAX Sep 4th, 2008
Replies: 6
Views: 1,634
Posted By greeny_1984
Re: how to load a page in a div tag

i have already used iframe,but it is taking long time to load,so iam looking for a alternative
which takes less time to load
Forum: ASP.NET Sep 4th, 2008
Replies: 3
Views: 675
Posted By greeny_1984
Re: search sql database textbox.text

u can use this query
select * from customers_table where cust_id='"+txtcustbox.texxt+"'
Forum: JavaScript / DHTML / AJAX Sep 1st, 2008
Replies: 6
Views: 1,634
Posted By greeny_1984
Re: how to load a page in a div tag

iam talking abt javascript only, i have html tag div,i want to load a page in to that div tag,is there a way to load a page using div tag
Forum: ASP.NET Aug 29th, 2008
Replies: 14
Views: 1,612
Posted By greeny_1984
Re: Beginner question: Changing contentplaceholder on button click

hi,
there is no need to load pages in contentplaceholder of master file,u cant debug master page.if u want to achieve the functioanlity ,u can create a usercontrol containing
the linkbuttons u have...
Forum: JavaScript / DHTML / AJAX Aug 29th, 2008
Replies: 6
Views: 1,634
Posted By greeny_1984
how to load a page in a div tag

hi,
i have a asp page in which iam using iframe to load a aspx page,but it is taking long time to load a page,so we r using div tag to load a page.is this possible to load a page using div.whats the...
Forum: ASP.NET Aug 27th, 2008
Replies: 1
Views: 156
Posted By greeny_1984
Re: Show top readers

y dont u create a column to enter the datetime of the books and retrieve it
Forum: ASP.NET Aug 27th, 2008
Replies: 2
Views: 407
Posted By greeny_1984
Re: Combo Box and ASP.net

hi,
u are writing the code in selectchanged event of second combobox as i understand from u r query,so write the code in select changed event of first combobox
Forum: ASP.NET Aug 27th, 2008
Replies: 14
Views: 1,612
Posted By greeny_1984
Re: Beginner question: Changing contentplaceholder on button click

is the master file different for all the pages or is the same as have given in u r question
Forum: ASP.NET Aug 25th, 2008
Replies: 14
Views: 1,612
Posted By greeny_1984
Re: Beginner question: Changing contentplaceholder on button click

what u want u want to change the content of the page page.aspx .whats the meaning of content(),can u post u r code here.
Forum: ASP.NET Aug 25th, 2008
Replies: 1
Views: 216
Posted By greeny_1984
Re: Creating a datagrid control

can u be more clear in u r query
Forum: ASP.NET Aug 23rd, 2008
Replies: 1
Views: 707
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

In parent page:
protected void Page_Load(object sender, EventArgs e)
{
this.ClientScript.GetPostBackEventReference(this, string.Empty);

if (this.IsPostBack)
{
...
Forum: ASP.NET Aug 22nd, 2008
Replies: 1
Views: 229
Posted By greeny_1984
Re: Help needed on freetextbox

whats freetextbox can u explain
Forum: ASP.NET Aug 22nd, 2008
Replies: 1
Views: 331
Posted By greeny_1984
Re: Inserting records Into Database

do u want to insert image in database,thats what u r asking or some thing different,u can use image column in data base to achieve that functionality

if u want to insert data ,then its same for any...
Forum: ASP.NET Aug 22nd, 2008
Replies: 14
Views: 1,612
Posted By greeny_1984
Re: Beginner question: Changing contentplaceholder on button click

u can use tab container control in ajaxcontroltoolkit ,if u are using ajax
Forum: ASP.NET Aug 22nd, 2008
Replies: 14
Views: 1,612
Posted By greeny_1984
Re: Beginner question: Changing contentplaceholder on button click

if u have five contentplaceholders in u r master page,u can use this to find control of each contentplaceholder
ContentPlaceHolder mcon = new ContentPlaceHolder();
mcon =...
Forum: ASP.NET Aug 19th, 2008
Replies: 2
Views: 425
Posted By greeny_1984
microsoft certification

hi,
i want to know about the microsoft certification program.I am working as asp.net developer on c#,what are the certifications avaialable for me.Are there any books for this certification.I am a...
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

Thanks langsor,
but iam not working on php
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

The suggestion u gave is very nice.
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

hi,
Thanks for the quick reply,but i want to update the whole page.
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

Basically my need is when a click edit button in parent page,i need to open a child page . After filling the data in the child page and clicking submit in child page,the child page should close and...
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
Re: how to reload a page using javascript with out alert

i have two pages one is parent page and other child page.when i click on hyperlink in parent page,the child page should open and on clicking submit button in child page,the page should close and...
Forum: ASP.NET Aug 18th, 2008
Replies: 1
Views: 707
Posted By greeny_1984
how to reload a page using javascript with out alert

hi,
iam using the following javascript a page
opener.location.reload( true );
but every time the page reloads iam a getting alert message.
How can i reload a page with out a alert message
Forum: JavaScript / DHTML / AJAX Aug 18th, 2008
Replies: 11
Views: 1,864
Posted By greeny_1984
how to reload a page using javascript with out alert

hi,
iam using the following javascript a page
opener.location.reload( true );
but every time the page reloads iam a getting alert message.
How can i reload a page with out a alert message
Forum: ASP.NET Aug 8th, 2008
Replies: 9
Views: 400
Posted By greeny_1984
Re: Validation controls

wat exaclty u want
Forum: ASP.NET Aug 8th, 2008
Replies: 3
Views: 390
Posted By greeny_1984
Re: Put the value in File upload control

u can just retrieve the value from database and store it in a session and use it to get the location in file upload
Forum: ASP.NET Aug 8th, 2008
Replies: 3
Views: 649
Posted By greeny_1984
Re: Find All controls in master page

can u specify what u need clearly or else u can crosspostback feature in asp.net 2.0
Forum: ASP.NET Aug 7th, 2008
Replies: 9
Views: 400
Posted By greeny_1984
Re: Validation controls

can u post u r code
Forum: ASP.NET Aug 7th, 2008
Replies: 2
Views: 463
Posted By greeny_1984
Re: Passing session object from login page to next page

u just declare session["name"] ="value"in first page,and in next page u get the value for session["name"]="value",u need not pass any thing from one page to another,try it u r self
Forum: ASP.NET Aug 7th, 2008
Replies: 1
Views: 1,361
Posted By greeny_1984
Re: Calling Javascript function in code behind file.

<script src="datetimepicker.js" type="text/javascript"></script>
function validateform()
{
if(IsEmptyField(document.getElementById("txtCompName"),'Provide Company Name')) return...
Forum: ASP.NET Aug 7th, 2008
Replies: 1
Views: 199
Posted By greeny_1984
Re: using sessions

hi,
if u are new to asp.net,first try to do it ur self and then if arent unable to do it,post the doubts
Forum: ASP.NET Aug 7th, 2008
Replies: 3
Views: 274
Posted By greeny_1984
Re: Childvalue in parent control

mark the thread as solved,so that other members will concentrate on problems which need to be solved
Forum: ASP.NET Aug 7th, 2008
Replies: 2
Views: 203
Posted By greeny_1984
Re: delete

Protected Sub Announcement_DeleteCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles Announcement.DeleteCommand
Dim strid As String
...
Showing results 1 to 40 of 257

 
All times are GMT -4. The time now is 6:46 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC