|
I am not sure if you can use listview in webforms ( i havent seen that listview control for web yet by Micrososft)
You can use DataList or Repeater control it depends how you want to show data.
www.asp.net is the best place to know about above controlos
Naveed Kamboh
|
|
|
|
|
Have you looked at what controls there are? at their documentation? suitable for what exactly?
|
|
|
|
|
|
i whuld like to refresh the frame page via asp.net(server side)
Piyush Vardhan Singh
Programmer
TAS NewDelhi
9313077379
|
|
|
|
|
I don't quite understand. You want to refresh a frame server-side? A request to the server will refresh the frame any way and theres no way to push a refresh to the client. You'll need so set a timeout in javascript to reload the page. Have a look for SetTimeout
|
|
|
|
|
how to load frame on click of tree node
Piyush Vardhan Singh
Programmer
TAS NewDelhi
9313077379
|
|
|
|
|
location.reload() in JavaScript. Emit a Startupscript from ASP.NET codebehind.
|
|
|
|
|
Hi dears,
I want to make programmatically a subdomain when a user registers in my website ?
ex: subdomain for Mr. Smith is http://smith.mysite.com
do you have any suggestion?
Thx
www.behzadi.net
|
|
|
|
|
|
in asp.net application i have one Button and when i click in that button i want to go to previous page.inside this code Response.redirect("") what i want to write?.
i have one more doubt ..
What is the difference between a global variable and a application variable ?
|
|
|
|
|
Server side yes you would want Response.Redirect() (not sure how to get the page to redirect to, I'm sure its in there somewhere). Client side you can use history.back() or history.go(-1) in the onclick handler.
|
|
|
|
|
Hi
To get previous page URL use this 'Request.ServerVariables["HTTP_REFERER"]'. But if you are using Server.Transfer, you will get NULL value so always use Response.Redirect in order to get prevoius page url.
If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Thank you. Harini
|
|
|
|
|
What Happenes by rating any post?
i have rated it
Thanks and Regards
Sandeep
If you want something you never had,
do something you have never done!
|
|
|
|
|
That was not answer
is it your signature
Thanks and Regards
Sandeep
If you want something you never had,
do something you have never done!
|
|
|
|
|
sandeep akhare wrote: What Happenes by rating any post?
By rating a post highly in the programming forums it highlights the post as a good answer. It is a form of thanks for helping. However, there is a second thing that happens with posts rated in the programming forums. At the end of the year the ratings are added up and the highest rated posters over the year become a Code Project MVP. (Those with a orange diamond logo next to their name in the forums are Code Project MVPs)
|
|
|
|
|
HTTP_REFERER or history.go(-1) or history.back();
|
|
|
|
|
I HAVE A USER CONTROL ON MY ASP.NET PAGE . THIS USER CONTROL HAS 4 BUTTONS ON CLICK OF THESE BUTTONS A NEW PAGE OPENS BELOW THESE USER CONTROLS. NOW AFTER THE PAGE IS OPENED AND I CLICK ANWHERE ON THE PAGE THE FOCUS GOES TO 1ST BUTTON IN USER CONTROL IRRESPECTIVE OF THE BUTTON I CLICK. HENCE WHEN MY USER HITS ENTER EVERY TIME THE FIRST PAGE OPENS. I HAVE CHECKED THE CODE AND THERE IS NO FOCUS SET FOR THIS IN MY CODE. I DONT UNDERSTAND WHY IT IS HAPPENING. I WNT THAT WHEN THE USER SELECT A BUTTON THE FOCUS REMAINS ON IT EVEN IF I CLICK ON THE PAGE.COULD SOME BODY HELP ME..... I REQUIRE IT.............
|
|
|
|
|
Take a deep breath, say 'woosa' sevreal times, take caps lock off and try again.
|
|
|
|
|
Hi,
I have a grid i which i have two labels i.e. label1 and label2, now the dataset which is the source for the grid has two tables table1 and table2.
Now when binding(databinder...eval...) date to the labels label1 should get the data from the column in table1 and the label2 should get the data from the cloumn in table!!!
How could this be done?
Thanks!
Gautham
|
|
|
|
|
Make an Inner Join between two tables then bind it in datagrid
Regards,
Sylvester G
Senior Software Engineer
Xoriant Solutions
sylvester_g_m@yahoo.com
Score it if you like my post
|
|
|
|
|
I want to merge PDF files into one single PDF Files using asp.net
I got source code window based. But i could not convert it. If any body know this please let me know.
Thanks in advance.
Raja
|
|
|
|
|
|
Hi,
I am getting the following error: Line 1: Incorrect syntax near ','.
conn.Execute = "UPDATE JOB SET " &_
"TITLE='" & cleanText(sTitle) & "', " &_
"CATEGORY=" & cleanText(sCategory) & ", " &_
"DEPARTMENT='" & cleanText(sDepartment) & "', " &_
"DESCRIPTION='" & cleanText(sDescription) & "', " &_
"RESPONSIBILITIES='" & cleanText(sResponsibility) & "', " &_
"REQ='" & cleanText(sRequirements) & "', " &_
"COMPENSATION='" & cleanText(sCompensation) & "', " &_
"CONTACT_PERSON='" & cleanText(sContactPerson) & "', " &_
"CLOSINGDATE='" & cleanText(sClosingDate) & "', " &_
"CONTACT_EMAIL='" & cleanText(sContactEmail) & "', " &_
"StatusId='" & 0 & "' WHERE ID=" & jobID
|
|
|
|
|
.execute is a function not a property whihc can be assinged a values...
it should be conn.Execute("your query");
and i guess the ";" is also missing
Deepak Surana
|
|
|
|
|
deepaks3 wrote: and i guess the ";" is also missing
It's VB code.
---
single minded; short sighted; long gone;
|
|
|
|