Search

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

Matching Posts

  • Re: gridview to xml document

    For Each r As GridViewRow In grdInquiryStage.Rows row = t.NewRow For i = 0 To grdInquiryStage.Columns.Count - 1 If r.Cells(i).HasControls Then If TypeOf (r.Cells(i).Controls(1)) Is TextBox Then row(i) = CType(r.Cells(i).Controls(1), TextBox).Text 'this is needed if you dealing with textbox with the grid ortherise cell)i).text is fine End If End If Next row("whateverID") = grdInquiryStage.DataKeys(r.RowIndex).Value.ToString t.Rows.Add(row) 'this was needed for it add rows Next good
  • Re: set multiple loginurl for nested folders?

    Tell me if I am right in thinking... Wouldnt this need to be done on every page in the secure folder? And this method assumes that ther is only one login page that directs the request. but i waas thinking to kave individual login pages inside the secure folders? so if anyone tried to navigate directly to say MasterAdmin\aaa.aspx they will see a login page within the MasterAdmin folder and so and so forth. in your previous example you are using appsetting with Key 'FolderName' i wonder what
    Posted to Security (Forum) by mayankagarwal on 2/19/2008
  • Re: set multiple loginurl for nested folders?

    Hi this seems to be a very good idea. i tried it on one folder and it working in essence. Are you able to provide a bit more elaborate example on how i can achieve this on 3 difference folders please
    Posted to Security (Forum) by mayankagarwal on 2/19/2008
  • Re: MAster page menu doesnt not refresh

    yes i have got the databind once i attach the datasource, but still no result. bit more details on my situation http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_23128677.html thanks for your help
  • MAster page menu doesnt not refresh

    Hi guys I have weird situation that i have a home page with two hyperlinks that pass querystring to call a masterpage/contentpage site. the masterpage has a menu and contentplaceholder. the content site fills the contents using the database. The querystring from the homepage is uses to determine which menu to display (dynamically generated) the problem i having that when i enter the first site (siteID = 1) the corrent menu is displayed, but then go back on the browser to even manually update the
    Posted to Master Pages, Themes and Navigation Controls (Forum) by mayankagarwal on 1/31/2008
    Filed under: asp.net 2.0 "master pages" refresh issue postback
  • Freetext box tool doesnt show up

    HI Guys I have wrecked my brain now i have tried to work with freetextbox but am not able to get the toolbar to show up i have tried all the the alternative, code behind, aspx page etc etc. but no go. Can you please give me some help to figure out a working example or way to get it working. If you know of any alternative content editior like the one we use here for the forum thats easy to set up please let me know.
    Posted to Getting Started (Forum) by mayankagarwal on 1/27/2008
    Filed under: freetextbox, asp.net
  • Re: First time use of MasterPages

    You might want to have a look at which event you have added your code to display the ID. The following link may help http://msdn2.microsoft.com/en-us/library/dct97kc3.aspx Cheers
  • Re: Storing ASP tags in sql database

    HI I am not really sure how this will work for me. ThoughI have been working ona work around to create a generic webform which will have all the textboxes in it call it say contactus.aspx. and link to the one masterpage that is shared by the other content page. Master page has the Menu. clicked menu item is passed to get the contents of the page using database. now with this new work around, i have a code block that if the menuitem = 3 (menuid for the contact us page) them navigate to url .../contactus
    Posted to Architecture (Forum) by mayankagarwal on 1/21/2008
  • Re: Storing ASP tags in sql database

    Can you elaborate on this for me please "My first thought is to store XML "template" in the database and have simple engine that will render forms from xml definition."
    Posted to Architecture (Forum) by mayankagarwal on 1/20/2008
  • Re: Storing ASP tags in sql database

    Hi Mamcilo Thanks for the replay. I initially tried to create a content page links with master page just for CONTACT US form purposes, but the problem was at the menu click i had to get the menu id to connect it to the contact us page. this would have caused code repitition. thus i thought if i put the tags in the database then it can create the page at runtime as its doing for other documents. Other situation is that every contact us page will have different "email" details depending on
    Posted to Architecture (Forum) by mayankagarwal on 1/20/2008
Page 1 of 2 (16 items) 1 2 Next >