Search

You searched for the word(s): userid:696349

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
  • 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" ; }
  • 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.
  • 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
  • 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 »