פיתוח תוכנה ובניית אתרים תוכנה לעסקים






פיתוח תוכנה ובניית אתרי אינטרנט
תוכנות לעסקים פיתוח תוכנה ובניית אתרים
התחברות לקוחות
כניסת לקוחות

 
 
כניסת לקוחות

  שכחת את הסיסמה?
תוכנות לדוגמא



 
חברת PC GROUP מתמחה במתן פתרונות מיחשוב מתקדמים לעסקים ולפרטיים. פיתוח תוכנות תפורות ומותאמות לעסקים שונים. בניית אתרי תדמית, אתרי מכירות, אתרים פנימיים לניהול עסק ותחזוקת מערכות מחשבים בעסק. אנו מתמסרים ללקוחותינו ומשתדלים בכל כוחנו לספק את המוצר הטוב ביותר במחירים הוגנים.
יצירת קשר מידע על תוכנה 052-663-5054
PC GROUP
  ניתן ליצור קשר בטלפון בין השעות 19:00 - 8:00
מעבר לשעות הנ"ל ניתן ליצור קשר דרך האתר

  טופס יצירת קשר dot   כתובת מייל dot   קבל הצעת מחיר dot
מחשבמידע על תוכנה

How to create a dynamic url mapping with web forms
 
To create a dynamic url mapping with web forms (without using MVC), you should add the route to your global.asax, like this:

        protected void Application_Start(object sender, EventArgs e)
        {
            //to prevent requests for the Web resource files such as WebResource.axd or ScriptResource.axd from being passed to a controller
            RouteTable.Routes.Ignore("{resource}.axd/{*pathInfo}");
            RouteTable.Routes.MapPageRoute("Article", "myweb/{articleName}", "~/myweb/template.aspx");          
        }

This routes every request from myweb/whatever to myweb/template.aspx , but the actual URL stays myweb/whatever. The whatever is sent as a parameter to template.aspx page. Overthere you can query the databse by that parameter.

To get access to the parameter on your template.aspx page you can add it to aspx page as:

<SelectParameters>
        <asp:RouteParameter Name="Category" RouteKey="articleName" Type="String" />
    </SelectParameters>

or you could access it from 
Page.RouteData.Values["articleName"]




Post a comment
Your name:

Your comment:


 

מידע על תוכנה
מידע על תוכנה
בית תוכנה לעסקים ולפרטיים