Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:696349
More Search Options
RSS Available
Matching Posts
Re: MasterPage change on ButtonClick
seems like you need a post-back for some reason since you want to use <asp:linkbutton> instead of <a></a>. below is a simpleton approach, but since i don't know why you need a post-back, there WILL be a viewstate problems. perhaps give me more thorough code and i can decode it for you. just keep in mind of the page life-cycle. protected void btnEdit_Click(sender object, eventargs e) { // what ever you need post-back for since you // your code here // redirect response.redirect
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
jae.lee
on 11/2/2008
Re: MasterPage change on ButtonClick
instead of relying on postback, rather make a static to pass parameter (improvise to button, ...etc) simple stuff. just remember page life-cycle. <a href="mypage.aspx?template=1">change template<a/> protected void Page_PreInit( object sender, EventArgs e) { if (Request.QueryString[ "template" ] == "1" ) this .MasterPageFile = "~/othertemplate.master" ; }
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
jae.lee
on 10/29/2008
cascadingdropdown without webservice?
is there anyway to bind the data using table adapter directly without using webservice? thanks.
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
jae.lee
on 4/12/2007
Re: Can't see "Server Objects and Events" from Drop-Down List
not a real solution per se, but try using code-behind. when using code-behind, you can see both boxes appear only when viewing the page in code-behind mode. how to get to code-behind? 1. create page with "create code-behind" check box ON 2. when in designer/source mode, click right (anywhere) then click on VIEW CODE. hope this helps. Jae.
Posted to
Visual Web Developer 2005 Express
(Forum)
by
jae.lee
on 3/19/2007
Re: Multiple choice answers carrying forward to next page requests
the problem is obviously you are trying to navigate before render cycle is processed. to avoid, i recommend using wizard control and input each form into each succession steps of wizard control. since, all viewstate is available in 1 page, although other pages may not load, you won't have any errors. jae.
Posted to
Web Forms
(Forum)
by
jae.lee
on 3/19/2007
Re: Pages with extensions .aspx or .asp will not load!
It's detecting Script permission (403.1) so it's not aspx or asp is not installed. You need to check following: 1. did you check execute permission on "HOME DIRECTORY" tab? (must be scripts only and up) 2. check directory security (under "SECURITY" tab)... perhaps enable "anonymous" or check specific user rights? 3. physical path is "READ ONLY"... go to c:\inetpub folder and go to PROPERTY of "wwwroot" folder. Make sure it's not READ ONLY. If you want to check if ASPX is really installed 1. check
Posted to
Web Hosting with IIS and ASP.NET
(Forum)
by
jae.lee
on 3/19/2007
Re: accessing data in inner repeater within nested repeater
yes, it took a lots of testing, but I've figured out that it was a timing of a binding issue (preparation of data vs. rendering timing... go figures...) so i've just added a handler after binding to create innerrepeater_itemdatabound event by coding: AddHandler rpt.ItemDataBound, AddressOf innerrpt_OnItemDataBound thank you. I've marked your reply as an answer. jae.
Posted to
Data Presentation Controls
(Forum)
by
jae.lee
on 3/19/2007
Re: How to find a datalist selection inside a repeater ?
try this: dim rptitem as repeateritem dim dtitem as datalistitem dim dt as datalist dim imgbtn as imagebutton for each rptitem in Repeater1.items dt = rptitem.findcontrol("DataList5") for each dtitem in dt.items imgbtn = dtitem.findcontrol("ImgP") ' do what you want to do here - printing value just as an example response.write(imgbtn.imageurl) next next hope this helps.
Posted to
Data Presentation Controls
(Forum)
by
jae.lee
on 3/18/2007
accessing data in inner repeater within nested repeater
I have problem accessing data within my inner repeater within nested repeater. see below code HTML (simplified.... don't worry about syntax) <asp:repeater id="outerrepeater" runat="server"> <%#eval("someid")%> <asp:repeater id="innerrepeater" runat="server"> <%#eval("somedetailid")%> </repeater> </repeater> CODE-BEHIND Protected Sub outerrepeater_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles outerrepeater
Posted to
Data Presentation Controls
(Forum)
by
jae.lee
on 3/18/2007
Re: system.Serviceprocess namespace not found in VS.NET 2005 pro edition
ryan, it's an old post, but i had a question about this.... why isn't system.serviceprocess.dll recognized like other namespaces? for example, when I just referenced as <add namespace="System.ServiceProcess" />, it's not referenced correctly not recognized in intellisense. when both are pre-installed in GAC, why wouldn't it recognize it? Getting to work is one thing, but what makes system.serviceprocess being handled differently? thanks... Jae.
Posted to
Visual Studio 2005
(Forum)
by
jae.lee
on 2/7/2007
Page 1 of 20 (194 items) 1
2
3
4
5
Next >
...
Last »
Channel 9:
TWC9: XAML tools, Silverlight for Live Writer, Surface SDK,
Channel 9:
C9 Conversations: Brian Beckman on Complexity [C9 Conversations: Brian Beckman on Complexity]
Channel 10:
Black Friday Deals on Windows 7 Machines
Channel 10:
Holiday Shopping on Bing Cashback = Big Online Savings
Channel 10:
Black Friday Deals at the Microsoft Store
Channel 10:
Incredible Black Friday Deal: Windows 7 Notebook for $197
ASP.NET:
Presenting in Europe Next Week
TechNet Edge:
AlignIT IT Manager Podcast #30 - Straight Talk about Windows 7
WindowsClient:
You know your post rate has gone down...
Silverlight:
Geek Profiles – Scott Guthrie
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 9 of 13
TechNet Edge:
Managing Your Virtual World - Tech Focus November 2009 Part 2
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online